10 lines
314 B
C#
10 lines
314 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add
|
|
{
|
|
public class AddDeploymentRequestDto
|
|
{
|
|
public Guid DeploymentGroupId { get; set; }
|
|
public ICollection<Guid> VirtualMachineIds { get; set; } = new List<Guid>();
|
|
public string JsonData { get; set; } = "{}";
|
|
}
|
|
}
|