Files
Fishing2Server/Entity/Gate/SessionPlayerComponent.cs
2025-07-28 23:45:46 +08:00

10 lines
166 B
C#

using Fantasy.Entitas;
namespace NB.Gate;
public sealed class SessionPlayerComponent : Entity
{
public bool Kick { get; set; }
public long AccountID;
}