mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
26 lines
903 B
C#
26 lines
903 B
C#
using EggLink.DanhengServer.Enums.Task;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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();
|
|
}
|
|
}
|