CSharp-Single-EFCore/Bunny.Service/IService/IJobService.cs

9 lines
174 B
C#
Raw Normal View History

2024-08-14 23:57:43 +08:00
namespace Bunny.Service.IService;
public interface IJobService
{
/// <summary>
/// 开启一个简单的工作
/// </summary>
void StartSimpleJob();
}