2025-12-17 11:12:13 +08:00
|
|
|
|
namespace YD_Event.Application.Blog.Dtos;
|
2025-12-17 10:32:52 +08:00
|
|
|
|
|
|
|
|
|
|
public class AlbumsPageQueryInput : Pagination
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 相册名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 相册类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public CoverType? Type { get; set; }
|
|
|
|
|
|
}
|