YD_Event.Admin/YD_Event.Application/Blog/Dtos/ArticlePageQueryInput.cs
2025-12-17 11:12:13 +08:00

14 lines
284 B
C#

namespace YD_Event.Application.Blog.Dtos;
public class ArticlePageQueryInput : Pagination
{
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// 栏目ID
/// </summary>
public long? CategoryId { get; set; }
}