mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 17:32:23 +00:00
20 lines
325 B
C#
20 lines
325 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Servers.Api.JsonWebToken
|
|||
|
{
|
|||
|
public class JWTUser
|
|||
|
{
|
|||
|
public uint UserID { get; set; }
|
|||
|
|
|||
|
public IEnumerable<string> Claims
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
|
|||
|
public string UserName
|
|||
|
{
|
|||
|
get; set;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|