Files
Microsoft.SelfService.Porta…/Dto/Deployment/Edit/EditDeploymentDto.cs
2026-04-15 15:02:32 +02:00

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; }
}
}