mirror of
https://dev.azure.com/tstanciu94/Tuitio/_git/Tuitio
synced 2025-03-28 23:52:20 +02:00
11 lines
260 B
C#
11 lines
260 B
C#
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; }
|
|
}
|
|
}
|