namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Get { public class GetDeploymentBatchDto : BaseDetailsDto { public Guid? TemplateId { get; set; } public Guid? DeploymentRuleId { get; set; } public string Status { get; set; } = string.Empty; public Guid? PrimaryTemplateVersionId { get; set; } public string? PrimaryTemplateName { get; set; } public string? PrimaryTemplateVersion { get; set; } public int TemplateSelectionCount { get; set; } public int TargetAssignmentCount { get; set; } } }