8 lines
176 B
C#
8 lines
176 B
C#
|
|
namespace BotSharp.Core.Crontab.Abstraction;
|
||
|
|
|
||
|
|
public interface ICrontabService
|
||
|
|
{
|
||
|
|
Task<List<CrontabItem>> GetCrontable();
|
||
|
|
Task ScheduledTimeArrived(CrontabItem item);
|
||
|
|
}
|