namespace Back.Common.ViewModels { public class PagingDto { public PagingDto(int RowCount, int pageCount, List list) { this.RowCount = RowCount; this.list = list; PageCount = pageCount; } public int RowCount { get; set; } public int PageCount { get; set; } public List list { get; set; } } }