mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
21 lines
733 B
C#
21 lines
733 B
C#
using EggLink.DanhengServer.Enums.Task;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
|
|
namespace EggLink.DanhengServer.Data.Config.Task;
|
|
|
|
public class TargetFetchAdvPropEx : TargetEvaluator
|
|
{
|
|
[JsonConverter(typeof(StringEnumConverter))]
|
|
public TargetFetchAdvPropFetchTypeEnum FetchType { get; set; }
|
|
|
|
//public DynamicString SinglePropKey;
|
|
public FetchAdvPropData SinglePropID { get; set; } = new();
|
|
|
|
//public DynamicString SingleUniqueName;
|
|
//public DynamicString[] MultiPropKey;
|
|
//public FetchAdvPropData[] MultiPropID;
|
|
//public DynamicString[] MultiUniqueName;
|
|
public DynamicFloat PropGroup { get; set; } = new();
|
|
public DynamicFloat PropIDInOwnerGroup { get; set; } = new();
|
|
} |