NewGaoKaoApi/New_College.IServices/ICasdoorUserServices.cs

13 lines
325 B
C#

using New_College.IServices.BASE;
using New_College.Model.Models;
using System.Threading.Tasks;
namespace New_College.IServices
{
/// <summary>
/// IuserServices
/// </summary>
public interface ICasdoorUserServices : IBaseServices<CasdoorUser>
{
Task<bool> AccontCancel(string openId);
}
}