using DouyinApi.IServices.BASE; using DouyinApi.Model.Models; using System.Collections.Generic; using System.Threading.Tasks; namespace DouyinApi.IServices { public interface ITopicServices : IBaseServices { Task> GetTopics(); } }