12 lines
261 B
C#
12 lines
261 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get
|
|
{
|
|
public class GetVirtualMachineDto : BaseDto
|
|
{
|
|
[Column(Order = 1)]
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
}
|