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

14 lines
345 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.IdentityServer.API.Models.Users
{
public class UserClaimModel(string claimType, string claimValue)
{
[AllowNull]
public string ClaimType { get; set; } = claimType;
[AllowNull]
public string ClaimValue { get; set; } = claimValue;
}
}