Files
Api/DouyinApi.IServices/IDS4Db/IApplicationUserServices.cs

11 lines
259 B
C#
Raw Normal View History

2025-11-04 21:09:16 +08:00
using System.Threading.Tasks;
using DouyinApi.IServices.BASE;
using DouyinApi.Model.IDS4DbModels;
namespace DouyinApi.IServices
{
public partial interface IApplicationUserServices : IBaseServices<ApplicationUser>
{
bool IsEnable();
}
}