namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get { public class GetDeploymentCompositionDto { public Guid DeploymentBatchId { get; set; } public ICollection TemplateSelections { get; set; } = new List(); public ICollection ParameterValues { get; set; } = new List(); public ICollection TargetAssignments { get; set; } = new List(); } }