initial commit
This commit is contained in:
15
Models/EnvironmentDomainsModel.cs
Normal file
15
Models/EnvironmentDomainsModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user