mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
13 lines
379 B
C#
13 lines
379 B
C#
using EggLink.DanhengServer.Enums.Avatar;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace EggLink.DanhengServer.Data.Config.Task;
|
|
|
|
public class AdvModifyMaxMazeMP : TaskConfigInfo
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public PropertyModifyFunctionEnum ModifyFunction { get; set; }
|
|
|
|
public DynamicFloat ModifyValue { get; set; } = new();
|
|
} |