14 lines
293 B
C#
14 lines
293 B
C#
|
|
namespace Easy.Admin.Application.Blog.Dtos;
|
|||
|
|
|
|||
|
|
public class AlbumsPageQueryInput : Pagination
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 相册名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 相册类型
|
|||
|
|
/// </summary>
|
|||
|
|
public CoverType? Type { get; set; }
|
|||
|
|
}
|