【新增】WebApi文章Controller新增【获取最新文章】【获取文章栏目】两个接口

This commit is contained in:
大灰灰
2022-11-29 01:19:55 +08:00
parent 30f1082e06
commit 9e5232762a
7 changed files with 157 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoreCms.Net.Model.FromBody
{
/// <summary>
/// 获取新文章
/// </summary>
public class FMGetNewArticle
{
public int num { set; get; } = 5;
public int typeId { set; get; } = 0;
}
}