Files

17 lines
332 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using System.Threading.Tasks;
namespace DouyinApi.Extensions.Authorizations.Behaviors
{
public interface IUserBehaviorService
{
Task<bool> CreateOrUpdateUserAccessByUid();
Task<bool> RemoveAllUserAccessByUid();
Task<bool> CheckUserIsNormal();
Task<bool> CheckTokenIsNormal();
}
}