tuitio/IdentityServer.Domain/Entities/UserClaim.cs

11 lines
260 B
C#
Raw Normal View History

namespace IdentityServer.Domain.Entities
{
public class UserClaim
{
public int ClaimId { get; set; }
public int UserId { get; set; }
public string ClaimKey { get; set; }
public string ClaimValue { get; set; }
}
}