13 lines
296 B
C#
13 lines
296 B
C#
|
|
namespace BotSharp.Abstraction.Crontab.Settings;
|
||
|
|
|
||
|
|
public class CrontabSettings
|
||
|
|
{
|
||
|
|
public CrontabBaseSetting EventSubscriber { get; set; } = new();
|
||
|
|
public CrontabBaseSetting Watcher { get; set; } = new();
|
||
|
|
}
|
||
|
|
|
||
|
|
public class CrontabBaseSetting
|
||
|
|
{
|
||
|
|
public bool Enabled { get; set; } = true;
|
||
|
|
}
|