mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
20 lines
483 B
C#
20 lines
483 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("GridFightDivisionInfo.json")]
|
|
public class GridFightDivisionInfoExcel : ExcelResource
|
|
{
|
|
public uint ID { get; set; }
|
|
public uint SeasonID { get; set; }
|
|
public uint Progress { get; set; }
|
|
public uint DivisionLevel { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.GridFightDivisionInfoData.TryAdd(ID, this);
|
|
}
|
|
} |