mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-01 20:30:41 +00:00
9 lines
265 B
C#
9 lines
265 B
C#
namespace ZonyLrcTools.LocalServer.Contract.Dtos;
|
|
|
|
public class PagedListResultDto<T>
|
|
{
|
|
public int TotalCount { get; set; }
|
|
public int PageIndex { get; set; }
|
|
public int PageSize { get; set; }
|
|
public List<T> Items { get; set; } = new List<T>();
|
|
} |