13 lines
375 B
C#
13 lines
375 B
C#
|
namespace SocialPub.ClientModels.User
|
|||
|
{
|
|||
|
public class JwtUser
|
|||
|
{
|
|||
|
public string UserId { get; set; }
|
|||
|
public string Username { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public List<string> Policies { get; set; } = new();
|
|||
|
public string Token { get; set; }
|
|||
|
public long Expiration { get; set; }
|
|||
|
public ViewUserSettings UserSettings { get; set; } = new();
|
|||
|
}
|
|||
|
}
|