Files
Api/DouyinApi.IServices/ITopicDetailServices.cs

13 lines
298 B
C#
Raw Permalink 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 ITopicDetailServices : IBaseServices<TopicDetail>
{
Task<List<TopicDetail>> GetTopicDetails();
}
}