webdav portal filter + detail view added
This commit is contained in:
parent
280628e362
commit
51d432fd2e
156 changed files with 32494 additions and 260 deletions
|
@ -0,0 +1,20 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue