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

12 lines
289 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>
{
2022-12-01 13:38:06 +08:00
Task<bool> OperateAsync(long articleOrCommentId, long userId);
2022-11-29 23:03:10 +08:00
}
}