mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
455 B
C#
19 lines
455 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("TrainPartyAreaGoalConfig.json")]
|
|
public class TrainPartyAreaGoalConfigExcel : ExcelResource
|
|
{
|
|
public int AreaID { get; set; }
|
|
public int ID { get; set; }
|
|
public List<int> StepGroupList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return ID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.TrainPartyAreaGoalConfigData.Add(ID, this);
|
|
}
|
|
} |