11 lines
259 B
C#
11 lines
259 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using DouyinApi.IServices.BASE;
|
|||
|
|
using DouyinApi.Model.IDS4DbModels;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.IServices
|
|||
|
|
{
|
|||
|
|
public partial interface IApplicationUserServices : IBaseServices<ApplicationUser>
|
|||
|
|
{
|
|||
|
|
bool IsEnable();
|
|||
|
|
}
|
|||
|
|
}
|