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

13 lines
321 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add
{
public class AddDeploymentDto
{
public Guid DeploymentGroupId { get; set; }
public Guid VirtualMachineId { get; set; }
public string Status { get; set; }
public string JsonData { get; set; }
}
}