18 lines
382 B
C#
Raw Permalink Normal View History

2025-12-17 11:12:13 +08:00
namespace YD_Event.Application.Client.Dtos;
2025-12-17 10:32:52 +08:00
public class ArticleListQueryInput : Pagination
{
/// <summary>
/// 标签ID
/// </summary>
public long? TagId { get; set; }
/// <summary>
/// 栏目ID
/// </summary>
public long? CategoryId { get; set; }
/// <summary>
/// 关键词
/// </summary>
public string Keyword { get; set; }
}