Files
Microsoft.SelfService.Porta…/Dto/Deployment/Edit/EditDeploymentDto.cs

21 lines
482 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Edit
{
public class EditDeploymentDto
{
[Column(Order = 1)]
public string Status { get; set; }
[Column(Order = 2)]
public string jsonData { get; set; }
[Column(Order = 1)]
public Guid TargetId { get; set; }
[Column(Order = 1)]
public Guid DeploymentGroupId { get; set; }
}
}