namespace Easy.Admin.Application.Client.Dtos;
public class ArticleListQueryInput : Pagination
{
///
/// 标签ID
///
public long? TagId { get; set; }
///
/// 栏目ID
///
public long? CategoryId { get; set; }
///
/// 关键词
///
public string Keyword { get; set; }
}