Blog.Core/Blog.Core.IServices/ITopicServices.cs
anjoy8 6819c3a899 remove all no need using
去掉不必要的引用
2020-06-04 22:58:53 +08:00

13 lines
274 B
C#

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