namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add { public class AddDeploymentRequestDto { public Guid DeploymentGroupId { get; set; } public ICollection VirtualMachineIds { get; set; } = new List(); public string JsonData { get; set; } = "{}"; } }