mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:43:26 +08:00
【新增】WebApi文章Controller新增【获取最新文章】【获取文章栏目】两个接口
This commit is contained in:
17
CoreCms.Net.Model/FromBody/FMArticle.cs
Normal file
17
CoreCms.Net.Model/FromBody/FMArticle.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user