using Yi.Framework.Bbs.Domain.Entities.Assignment; namespace Yi.Framework.Bbs.Domain.Managers.AssignmentProviders; /// /// 新手任务提供者 /// public class NoviceProvider : IAssignmentProvider { public Task> GetCanReceiveListAsync(AssignmentContext context) { throw new NotImplementedException(); } public Task VerifyCanAcceptAsync(AssignmentContext context) { throw new NotImplementedException(); } }