You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace NzbDrone.Web.Models
|
|
{
|
|
public class DataTablesParams
|
|
{
|
|
public int iDisplayStart { get; set; }
|
|
public int iDisplayLength { get; set; }
|
|
public int iColumns { get; set; }
|
|
public string sSearch { get; set; }
|
|
public bool bEscapeRegex { get; set; }
|
|
public int iSortingCols { get; set; }
|
|
public int sEcho { get; set; }
|
|
public List<bool> bSortable { get; set; }
|
|
public List<bool> bSearchable { get; set; }
|
|
public List<string> sSearchColumns { get; set; }
|
|
public List<int> iSortCol { get; set; }
|
|
public List<string> sSortDir { get; set; }
|
|
public List<bool> bEscapeRegexColumns { get; set; }
|
|
|
|
public DataTablesParams()
|
|
{
|
|
bSortable = new List<bool>();
|
|
bSearchable = new List<bool>();
|
|
sSearchColumns = new List<string>();
|
|
iSortCol = new List<int>();
|
|
sSortDir = new List<string>();
|
|
bEscapeRegexColumns = new List<bool>();
|
|
}
|
|
}
|
|
} |