zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Models/Tenants/TenantClaimModel.cs

26 lines
782 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
namespace ZeroFramework.IdentityServer.API.Models.Tenants
{
public class TenantClaimModel
{
/// <summary>
/// Gets or sets the identifier for this tenant claim.
/// </summary>
public virtual int? Id { get; set; }
/// <summary>
/// Gets or sets the of the primary key of the tenant associated with this claim.
/// </summary>
public virtual Guid TenantId { get; set; }
/// <summary>
/// Gets or sets the claim type for this claim.
/// </summary>
public virtual string ClaimType { get; set; } = string.Empty;
/// <summary>
/// Gets or sets the claim value for this claim.
/// </summary>
public virtual string? ClaimValue { get; set; }
}
}