13 lines
374 B
C#
13 lines
374 B
C#
namespace PrivaPub.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 ViewAvatarServer UserSettings { get; set; } = new();
|
|
}
|
|
} |