Files
2026-03-05 11:39:06 +08:00

11 lines
301 B
C#

using Fantasy.Entitas;
namespace Fantasy;
public sealed class ChatUnit : Entity
{
public string UserName;
public long GateRouteId;
public readonly Dictionary<long, ChatChannelComponent> Channels = new();
public readonly Dictionary<int, long> SendTime = new Dictionary<int, long>();
}