zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Models/Tenants/TenantClaimModel.cs
2023-12-05 17:22:48 +08:00

26 lines
782 B
C#

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; }
}
}