12 lines
313 B
C#
12 lines
313 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get
|
|
{
|
|
public class GetEnvironmentDomainDetailsDto : BaseDetailsDto
|
|
{
|
|
|
|
[Column(Order = 1)]
|
|
public ICollection<GetEnvironmentDetailsDto> Environment { get; set; }
|
|
}
|
|
}
|