ZrAdminNetCore/ZR.Service/IService/IArticleCategoryService.cs
2021-08-23 16:57:25 +08:00

15 lines
349 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.System;
namespace ZR.Service.IService
{
public interface IArticleCategoryService : IBaseService<ArticleCategory>
{
List<ArticleCategory> BuildCategoryTree(List<ArticleCategory> categories);
}
}