BotSharp/src/Infrastructure/BotSharp.Abstraction/Crontab/Settings/CrontabSettings.cs

19 lines
435 B
C#
Raw Normal View History

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();
}
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; } = "";
}