using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEAWCS_Core
|
{
|
public class PageGridData<T>
|
{
|
public int Total { get; set; }
|
public List<T> Rows { get; set; }
|
public object Summary { get; set; }
|
|
public PageGridData()
|
{
|
|
}
|
|
public PageGridData(int total, List<T> rows)
|
{
|
Total = total;
|
Rows = rows;
|
}
|
}
|
}
|