mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
11 lines
254 B
C#
11 lines
254 B
C#
namespace EggLink.DanhengServer.Data.Config.Task;
|
|
|
|
public class TriggerCustomString : TaskConfigInfo
|
|
{
|
|
public DynamicString CustomString { get; set; } = new();
|
|
}
|
|
|
|
public class DynamicString
|
|
{
|
|
public string Value { get; set; } = string.Empty;
|
|
} |