|
using System.Collections.Generic;
|
|
using System.Security.Claims;
|
|
|
|
namespace IdentityServer.Models
|
|
{
|
|
public class TaloyhtioUser
|
|
{
|
|
public string Subject { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public List<Claim> Claims { get; set; }
|
|
}
|
|
} |