mysimulation/server/FSO.Server.Common/JsonWebToken/JWTUser.cs

20 lines
325 B
C#
Raw Permalink Normal View History

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