10 lines
266 B
C#
10 lines
266 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Edit
|
|
{
|
|
public class EditVirtualMachineDto
|
|
{
|
|
public string Name { get; set; }
|
|
public string? ExternalId { get; set; }
|
|
public string? MetadataJson { get; set; }
|
|
}
|
|
}
|