13 lines
274 B
C#
13 lines
274 B
C#
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|