9 lines
187 B
C#
9 lines
187 B
C#
|
|
namespace Easy.Admin.Application.Blog.Dtos;
|
|||
|
|
|
|||
|
|
public class PicturesPageQueryInput : Pagination
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 相册ID
|
|||
|
|
/// </summary>
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
}
|