namespace ZonyLrcTools.LocalServer.Contract.Dtos; public class PagedListResultDto { public int TotalCount { get; set; } public int PageIndex { get; set; } public int PageSize { get; set; } public List Items { get; set; } = new List(); }