mirror of
https://dev.azure.com/effectory/Survey%20Software/_git/Cloud%20Engineering
synced 2026-02-27 18:52:18 +01:00
12 lines
319 B
C#
12 lines
319 B
C#
namespace AzureRestApi.Models.Resources
|
|
{
|
|
public class Deployment
|
|
{
|
|
public string? id { get; set; }
|
|
public string? name { get; set; }
|
|
public string? type { get; set; }
|
|
public string? location { get; set; }
|
|
public DeploymentProperties? properties { get; set; }
|
|
}
|
|
}
|