Created
July 15, 2019 21:47
-
-
Save davidsonsousa/9c5a702cb1afe288d03944874282d037 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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