Files
hjha-server/Config/Code/TimeRankType.cs
xiaoou e9616125ce feat: initial commit - HJHA game server full source
6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) +
game logic (GameFix/GameDAL/ServerData) +
network layer (NetWorkMessage) +
data layer (ObjectModel) +
utilities (MrWu/Core/Config/CloudAPI/dll) +
adapters (zyxAdapter/base)

.NET 8.0 C# solution, 16 projects, 958 source files
2026-07-07 12:02:15 +08:00

44 lines
975 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Server.Config
{
public enum TimeRankType
{
/// <summary>
/// 日榜
/// </summary>
Day = 1,
/// <summary>
/// 月榜
/// </summary>
Month = 2,
/// <summary>
/// 年榜
/// </summary>
Year = 3,
/// <summary>
/// 季傍
/// </summary>
Quarter = 4,
/// <summary>
/// 周榜
/// </summary>
Week = 5,
/// <summary>
/// 冲榜
/// </summary>
ChongBang = 99,
}
}