13 lines
321 B
C#
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; }
|
|
|
|
}
|
|
}
|