Files
Fishing2/Assets/Scripts/Model/Net/Entity/JWT/JWTParseComponent.cs
2025-08-29 09:11:08 +08:00

17 lines
409 B
C#

namespace Assets.Scripts.Entity
{
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 : NBC.Entitas.Entity
{
}
}