using System.ComponentModel.DataAnnotations.Schema; using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add; namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Add { public class AddDeploymentBatchDto { [Column(Order = 1)] public Guid? TemplateId { get; set; } [Column(Order = 2)] public Guid? TemplateVersionId { get; set; } [Column(Order = 3)] public Guid? DeploymentRuleId { get; set; } [Column(Order = 4)] public string Status { get; set; } = string.Empty; [Column(Order = 5)] public ICollection? TargetIds { get; set; } [Column(Order = 6)] public ICollection? TemplateSelections { get; set; } [Column(Order = 7)] public ICollection? TargetAssignments { get; set; } } }