namespace ZeroFramework.IdentityServer.API.Models.Tenants
{
public class TenantClaimModel
{
///
/// Gets or sets the identifier for this tenant claim.
///
public virtual int? Id { get; set; }
///
/// Gets or sets the of the primary key of the tenant associated with this claim.
///
public virtual Guid TenantId { get; set; }
///
/// Gets or sets the claim type for this claim.
///
public virtual string ClaimType { get; set; } = string.Empty;
///
/// Gets or sets the claim value for this claim.
///
public virtual string? ClaimValue { get; set; }
}
}