Taylohtio/IDP/identityserver/Models/TaloyhtioUser.cs

13 lines
328 B
C#

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; }
}
}