11 lines
308 B
C#
11 lines
308 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Add
|
|
{
|
|
public class AddVirtualMachineDto
|
|
{
|
|
public Guid? DomainID { get; set; }
|
|
public string Name { get; set; }
|
|
public string? ExternalId { get; set; }
|
|
public string? MetadataJson { get; set; }
|
|
}
|
|
}
|