9 lines
161 B
C#
9 lines
161 B
C#
using BotSharp.Core.Crontab.Models;
|
|
|
|
namespace BotSharp.Core.Crontab.Abstraction;
|
|
|
|
public interface ICrontabHook
|
|
{
|
|
Task OnCronTriggered(CrontabItem item);
|
|
}
|