15 lines
449 B
C#
15 lines
449 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Models
|
|
{
|
|
public class EnvironmentDomainsModel : BaseJunctionModel
|
|
{
|
|
[Column(Order = 0)]
|
|
public Guid EnvironmentId { get; set; }
|
|
public EnvironmentModel Environment { get; set; }
|
|
|
|
[Column(Order = 1)]
|
|
public Guid DomainId { get; set; }
|
|
public DomainModel Domain { get; set; }
|
|
}
|
|
} |