tuitio/IdentityServer.PublishedLan.../Dto/TokenCore.cs

18 lines
559 B
C#
Raw Normal View History

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