using System.ComponentModel.DataAnnotations.Schema; 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? DeploymentRuleId { get; set; } [Column(Order = 3)] public string Status { get; set; } = string.Empty; [Column(Order = 4)] public ICollection? TargetIds { get; set; } } }