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