2025-05-20 15:59:42 +00:00
|
|
|
namespace BotSharp.Abstraction.Crontab.Settings;
|
|
|
|
|
|
|
|
|
|
public class CrontabSettings
|
|
|
|
|
{
|
|
|
|
|
public CrontabBaseSetting EventSubscriber { get; set; } = new();
|
|
|
|
|
public CrontabBaseSetting Watcher { get; set; } = new();
|
2025-09-10 03:45:39 +00:00
|
|
|
public DebugSetting Debug { get; set; } = new();
|
2025-05-20 15:59:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class CrontabBaseSetting
|
|
|
|
|
{
|
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
|
}
|
2025-09-10 03:45:39 +00:00
|
|
|
|
|
|
|
|
public class DebugSetting
|
|
|
|
|
{
|
|
|
|
|
public string AllowRuleTrigger { get; set; } = "";
|
|
|
|
|
}
|