Blog.Core/Blog.Core.IServices/ITopicServices.cs
2019-01-17 18:21:59 +08:00

16 lines
326 B
C#

using Blog.Core.IServices.BASE;
using Blog.Core.Model.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blog.Core.IServices
{
public interface ITopicServices : IBaseServices<Topic>
{
Task<List<Topic>> GetTopics();
}
}