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 bSortable { get; set; } public List bSearchable { get; set; } public List sSearchColumns { get; set; } public List iSortCol { get; set; } public List sSortDir { get; set; } public List bEscapeRegexColumns { get; set; } public DataTablesParams() { bSortable = new List(); bSearchable = new List(); sSearchColumns = new List(); iSortCol = new List(); sSortDir = new List(); bEscapeRegexColumns = new List(); } } }