20 lines
489 B
C#
20 lines
489 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 VirtualMachineId { get; set; }
|
|
[Column(Order = 1)]
|
|
public Guid DeploymentGroupId { get; set; }
|
|
|
|
}
|
|
}
|