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,16 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace WebsitePanel.WebDavPortal.Models.Common.DataTable
|
||||
{
|
||||
public class JqueryDataTableRequest
|
||||
{
|
||||
public int Draw { get; set; }
|
||||
public int Start { get; set; }
|
||||
public int Count { get; set; }
|
||||
|
||||
|
||||
public JqueryDataTableSearch Search { get; set; }
|
||||
public IEnumerable<JqueryDataTableOrder> Orders { get; set; }
|
||||
public IEnumerable<JqueryDataTableColumn> Columns { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue