mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 01:00:51 +08:00
13 lines
388 B
C#
13 lines
388 B
C#
using Volo.Abp.DependencyInjection;
|
|
using Yi.Framework.Bbs.Domain.Shared.Enums;
|
|
|
|
namespace Yi.Framework.Bbs.Domain.Managers.AssignmentProviders;
|
|
|
|
/// <summary>
|
|
/// 每周任务提供者
|
|
/// </summary>
|
|
[ExposeServices(typeof(IAssignmentProvider))]
|
|
public class WeeklyProvider : TimerProvider
|
|
{
|
|
protected override AssignmentTypeEnum AssignmentType => AssignmentTypeEnum.Weekly;
|
|
} |