Files
Api/DouyinApi.IServices/ITopicServices.cs

13 lines
274 B
C#
Raw Normal View History

2025-11-04 21:09:16 +08:00
using DouyinApi.IServices.BASE;
using DouyinApi.Model.Models;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace DouyinApi.IServices
{
public interface ITopicServices : IBaseServices<Topic>
{
Task<List<Topic>> GetTopics();
}
}