Files
Hushian/Common/Models/Paging.cs

23 lines
503 B
C#
Raw Permalink Normal View History

2025-06-28 16:43:25 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Models
{
public class Paging<T>
{
public Paging(int RowCount, int pageCount, List<T> list)
{
this.RowCount = RowCount;
this.list = list;
PageCount = pageCount;
}
public int RowCount { get; set; }
public int PageCount { get; set; }
public List<T> list { get; set; }
}
}