18 lines
428 B
C#
18 lines
428 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Edit
|
|
{
|
|
public class EditDeploymentBatchDto
|
|
{
|
|
[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;
|
|
}
|
|
}
|
|
|