using Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get; using Microsoft.SelfService.Portal.Core.API.Models; using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get { public class GetVirtualMachineDetailsDto : BaseDetailsDto { [Column(Order = 1)] public string Name { get; set; } public GetDomainDto Domain { get; set; } } }