mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-07 02:00:51 +08:00
11 lines
304 B
C#
11 lines
304 B
C#
using Yi.Framework.Bbs.Domain.Shared.Enums;
|
|
|
|
namespace Yi.Framework.Bbs.Domain.Managers.AssignmentProviders;
|
|
|
|
/// <summary>
|
|
/// 每日任务提供者
|
|
/// </summary>
|
|
public class DailyProvider : TimerProvider
|
|
{
|
|
protected override AssignmentTypeEnum AssignmentType => AssignmentTypeEnum.Daily;
|
|
} |