18 lines
559 B
C#
18 lines
559 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace IdentityServer.PublishedLanguage.Dto
|
|||
|
{
|
|||
|
public class TokenCore
|
|||
|
{
|
|||
|
public int UserId { get; set; }
|
|||
|
public string UserName { get; set; }
|
|||
|
public string FirstName { get; set; }
|
|||
|
public string LastName { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public string ProfilePictureUrl { get; set; }
|
|||
|
public string SecurityStamp { get; set; }
|
|||
|
public string LockStamp { get; set; }
|
|||
|
public Dictionary<string, string> Claims { get; set; }
|
|||
|
}
|
|||
|
}
|