mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
12 lines
369 B
C#
12 lines
369 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; }
|
|
} |