Blog.Core/Blog.Core.IServices/ITopicDetailServices.cs

13 lines
298 B
C#
Raw Normal View History

2018-08-24 14:06:48 +08:00
using Blog.Core.IServices.BASE;
using Blog.Core.Model.Models;
2018-08-22 12:18:14 +08:00
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Blog.Core.IServices
{
2018-08-24 14:06:48 +08:00
public interface ITopicDetailServices : IBaseServices<TopicDetail>
2018-08-22 12:18:14 +08:00
{
2019-01-17 18:21:59 +08:00
Task<List<TopicDetail>> GetTopicDetails();
2018-08-22 12:18:14 +08:00
}
}