21 lines
484 B
C#
21 lines
484 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace VOL.Model.Norm.Request
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 公众号文章查询参数
|
||
|
/// </summary>
|
||
|
public class ArticlePageListParam : PageDto
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 文章标题
|
||
|
/// </summary>
|
||
|
[Display(Name = "文章标题")]
|
||
|
public string Title { get; set; }
|
||
|
}
|
||
|
}
|