17 lines
332 B
C#
17 lines
332 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace DouyinApi.Extensions.Authorizations.Behaviors
|
|||
|
|
{
|
|||
|
|
public interface IUserBehaviorService
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
Task<bool> CreateOrUpdateUserAccessByUid();
|
|||
|
|
|
|||
|
|
Task<bool> RemoveAllUserAccessByUid();
|
|||
|
|
|
|||
|
|
Task<bool> CheckUserIsNormal();
|
|||
|
|
|
|||
|
|
Task<bool> CheckTokenIsNormal();
|
|||
|
|
}
|
|||
|
|
}
|