Skip to content

Instantly share code, notes, and snippets.

@davidsonsousa
Created July 15, 2019 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsonsousa/9c5a702cb1afe288d03944874282d037 to your computer and use it in GitHub Desktop.
Save davidsonsousa/9c5a702cb1afe288d03944874282d037 to your computer and use it in GitHub Desktop.
using Newtonsoft.Json;
using System.Collections.Generic;
namespace ReportsWeb.Models.DataTable
{
public sealed class DataParameters
{
[JsonProperty(PropertyName = "draw")]
public int Draw { get; set; }
[JsonProperty(PropertyName = "columns")]
public List<DataColumn> Columns { get; set; }
[JsonProperty(PropertyName = "order")]
public List<DataOrder> Order { get; set; }
[JsonProperty(PropertyName = "start")]
public int Start { get; set; }
[JsonProperty(PropertyName = "length")]
public int Length { get; set; }
[JsonProperty(PropertyName = "search")]
public Search Search { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment