15 lines
448 B
C#
15 lines
448 B
C#
using Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get
|
|
{
|
|
public class GetEnvironmentDomainDto : BaseDetailsDto
|
|
{
|
|
[Column(Order = 1)]
|
|
public string Name { get; set; }
|
|
[Column(Order = 2)]
|
|
public ICollection<GetEnvironmentDomainDetailsDto> EnvironmentDomains { get; set; }
|
|
}
|
|
|
|
}
|