Blog.Core/Blog.Core.IServices/ITopicServices.cs

13 lines
274 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 ITopicServices : IBaseServices<Topic>
2018-08-22 12:18:14 +08:00
{
2019-01-17 18:21:59 +08:00
Task<List<Topic>> GetTopics();
2018-08-22 12:18:14 +08:00
}
}