mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
19 lines
551 B
C#
19 lines
551 B
C#
using EggLink.DanhengServer.Enums.Rogue;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace EggLink.DanhengServer.Data.Custom;
|
|
|
|
public class ChessRogueDiceSurfaceEffectConfig
|
|
{
|
|
public int SurfaceId { get; set; }
|
|
public List<ChessRogueDiceSurfaceContentEffect> ContentEffects { get; set; } = [];
|
|
}
|
|
|
|
public class ChessRogueDiceSurfaceContentEffect
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public ModifierEffectTypeEnum EffectType { get; set; }
|
|
|
|
public Dictionary<string, string> Params { get; set; } = [];
|
|
} |