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