mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
20 lines
438 B
C#
20 lines
438 B
C#
namespace EggLink.DanhengServer.Data.Excel;
|
|
|
|
[ResourceEntity("ShopConfig.json")]
|
|
public class ShopConfigExcel : ExcelResource
|
|
{
|
|
public int ShopID { get; set; }
|
|
public int ShopType { get; set; }
|
|
|
|
public List<ShopGoodsConfigExcel> Goods { get; set; } = [];
|
|
|
|
public override int GetId()
|
|
{
|
|
return ShopID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.ShopConfigData.Add(GetId(), this);
|
|
}
|
|
} |