Init Git
This commit is contained in:
10
AMREZ.EOP.Domain/Entities/Tenancy/TenantDomain.cs
Normal file
10
AMREZ.EOP.Domain/Entities/Tenancy/TenantDomain.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace AMREZ.EOP.Domain.Entities.Tenancy;
|
||||
|
||||
public class TenantDomain
|
||||
{
|
||||
public string Domain { get; set; } = default!;
|
||||
public string? TenantKey { get; set; }
|
||||
public bool IsPlatformBaseDomain { get; set; } = false;
|
||||
public bool IsActive { get; set; } = true;
|
||||
public DateTimeOffset UpdatedAtUtc { get; set; } = DateTimeOffset.UtcNow;
|
||||
}
|
||||
Reference in New Issue
Block a user