mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
14 lines
403 B
C#
14 lines
403 B
C#
using EggLink.DanhengServer.Data.Excel;
|
|
|
|
namespace EggLink.DanhengServer.Data.Custom;
|
|
|
|
public class GridFightBasicOrbRewardsConfig
|
|
{
|
|
public Dictionary<uint, GridFightBasicOrbRewardsInfo> OrbRewards { get; set; } = [];
|
|
}
|
|
|
|
public class GridFightBasicOrbRewardsInfo
|
|
{
|
|
public uint OrbId { get; set; }
|
|
public Dictionary<uint, List<GridFightBasicBonusPoolV2Excel>> Rewards { get; set; } = [];
|
|
} |