mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
15 lines
436 B
C#
15 lines
436 B
C#
using EggLink.DanhengServer.Enums.Task;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace EggLink.DanhengServer.Data.Config.Task;
|
|
|
|
public class ByCompareFloorSavedValue : PredicateConfigInfo
|
|
{
|
|
public string Name { get; set; } = "";
|
|
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public CompareTypeEnum CompareType { get; set; } = CompareTypeEnum.Equal;
|
|
|
|
public short CompareValue { get; set; } = 0;
|
|
} |