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

16 lines
295 B
C#
Raw Normal View History

2018-08-24 14:06:48 +08:00
using Blog.Core.IServices.BASE;
using Blog.Core.Model.Models;
using System;
2018-08-22 12:18:14 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
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
{
}
}