18 lines
401 B
C#
18 lines
401 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace LiveForum.IService.Others
|
|
{
|
|
/// <summary>
|
|
/// 定时任务服务接口
|
|
/// </summary>
|
|
public interface IScheduledJobService
|
|
{
|
|
/// <summary>
|
|
/// 重置主播送花数量(每月清零并重新统计当月数据)
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task ResetStreamerFlowerCountAsync();
|
|
}
|
|
}
|
|
|