namespace BotSharp.Abstraction.Crontab;
///
/// Provide a cron source for the crontab service.
///
public interface ICrontabSource
{
///
/// Set to true if the cron is real-time like Change Data Capture (CDC).
///
bool IsRealTime => false;
CrontabItem GetCrontabItem();
}