Files
Fishing2NetTest/Assets/Scripts/Common/Net/Entity/JWT/JWTParseComponent.cs
2026-03-05 18:07:55 +08:00

17 lines
395 B
C#

namespace NBF
{
public sealed class Payload
{
public long aId { get; set; }
public string Address { get; set; }
public uint SceneId { get; set; }
public int exp { get; set; }
public string iss { get; set; }
public string aud { get; set; }
}
public sealed class JWTParseComponent : Fantasy.Entitas.Entity
{
}
}