Files
Microsoft.SelfService.Porta…/Dto/DeploymentComposition/Get/GetDeploymentCompositionDto.cs

12 lines
615 B
C#

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