2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Application.Blog.Dtos;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
public class ArticlePageQueryInput : Pagination
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 标题
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 栏目ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long? CategoryId { get; set; }
|
|
|
|
|
|
}
|