using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get; using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get; using Microsoft.SelfService.Portal.Core.API.Dto.Template.Get; namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Get { public class GetDeploymentBatchDetailsDto : BaseDto { public Guid? DeploymentRuleId { get; set; } public string Status { get; set; } = string.Empty; public GetTemplateDetailsDto Template { get; set; } = null!; public ICollection Deployments { get; set; } = new List(); public ICollection TemplateSelections { get; set; } = new List(); public ICollection ParameterValues { get; set; } = new List(); public ICollection TargetAssignments { get; set; } = new List(); } }