11 lines
229 B
C#
Raw Normal View History

2025-03-11 10:24:11 +08:00
namespace JiShe.IOT.Jobs
{
public interface IRecurringJob : ITransientDependency
{
/// <summary>
/// 执行任务
/// </summary>
/// <returns></returns>
Task ExecuteAsync();
}
}