2025-12-17 11:12:13 +08:00

14 lines
291 B
C#

namespace YD_Event.Application.Blog.Dtos;
public class AlbumsPageQueryInput : Pagination
{
/// <summary>
/// 相册名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 相册类型
/// </summary>
public CoverType? Type { get; set; }
}