21 lines
513 B
C#
21 lines
513 B
C#
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<Guid>? TargetIds { get; set; }
|
|
}
|
|
}
|
|
|