using System.Threading.Tasks; namespace DouyinApi.Extensions.Authorizations.Behaviors { public interface IUserBehaviorService { Task CreateOrUpdateUserAccessByUid(); Task RemoveAllUserAccessByUid(); Task CheckUserIsNormal(); Task CheckTokenIsNormal(); } }