Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Interface/IAgreeService.cs

12 lines
280 B
C#
Raw Normal View History

2022-11-29 23:03:10 +08:00
using System.Threading.Tasks;
using Yi.Framework.Model.Models;
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
public partial interface IAgreeService : IBaseService<AgreeEntity>
{
Task<bool> OperateAsync(long articleId, long userId);
}
}