using LiveForum.Code.Base; using LiveForum.Model.Dto.UserFollow; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LiveForum.IService.Users { /// /// 用户关注服务接口 /// public interface IUserFollowService { /// /// 关注/取消关注用户 /// /// 请求参数 /// Task> FollowUser(FollowUserReq request); /// /// 获取关注列表 /// /// 请求参数 /// Task> GetUserFollowing(GetUserFollowingReq request); /// /// 获取粉丝列表 /// /// 请求参数 /// Task> GetUserFollowers(GetUserFollowersReq request); } }