mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00

* 重做 WebSocket 监听;为服务器统一了多种数据连接访问时的处理;统一编码为 UTF-8 * ModelManager已更名并移动到工具命名空间中 * 完成 WebSocket 消息处理系统 * 添加Socket异步接收数据流;修复TaskUtility阻塞的问题;优化心跳、房间、模组 * 添加枚举 * 删除多余字符 * 添加监听器的名称 * 修改了命名
10 lines
270 B
C#
10 lines
270 B
C#
namespace Milimoe.FunGame.Core.Entity.System
|
|
{
|
|
public class Season(long id, string name, string description)
|
|
{
|
|
public long Id { get; } = id;
|
|
public string Name { get; } = name;
|
|
public string Description { get; } = description;
|
|
}
|
|
}
|