zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Models/Users/UserClaimModel.cs

14 lines
345 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
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;
}
}