13 lines
386 B
C#
13 lines
386 B
C#
using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get
|
|
{
|
|
public class GetDeploymentDto : BaseDto
|
|
{
|
|
public Guid DeploymentGroupId { get; set; }
|
|
public Guid VirtualMachineId { get; set; }
|
|
public string Status { get; set; }
|
|
public string JSONData { get; set; }
|
|
}
|
|
}
|