namespace Tiobon.Core.IServices; /// /// UserRoleServices /// public interface IUserRoleServices : IBaseServices { Task SaveUserRole(long uid, long rid); Task GetRoleIdByUid(long uid); }