websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Models/Common/DataTable/JqueryDataTablesResponse.cs
2015-02-18 02:35:32 -08:00

20 lines
No EOL
684 B
C#

using System.Collections;
namespace WebsitePanel.WebDavPortal.Models.Common.DataTable
{
public class JqueryDataTablesResponse
{
public int draw { get; private set; }
public IEnumerable data { get; private set; }
public int recordsTotal { get; private set; }
public int recordsFiltered { get; private set; }
public JqueryDataTablesResponse(int draw, IEnumerable data, int recordsFilteredCount, int recordsTotalCount)
{
this.draw = draw;
this.data = data;
this.recordsFiltered = recordsFilteredCount;
this.recordsTotal = recordsTotalCount;
}
}
}