mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
9 lines
268 B
C#
9 lines
268 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace EggLink.DanhengServer.Data.Custom;
|
|
|
|
public abstract class BaseRogueBuffGroupExcel : ExcelResource
|
|
{
|
|
[JsonIgnore] public List<BaseRogueBuffExcel> BuffList { get; set; } = [];
|
|
[JsonIgnore] public bool IsLoaded { get; set; }
|
|
} |