mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
18 lines
416 B
C#
18 lines
416 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("RechargeGiftConfig.json")]
|
|
public class RechargeGiftConfigExcel : ExcelResource
|
|
{
|
|
public int GiftType { get; set; }
|
|
public List<int> GiftIDList { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return GiftType;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.RechargeGiftConfigData.Add(GiftType, this);
|
|
}
|
|
} |