A serializable object for the Kendo Grid Filter
public class CompositeFilterDescriptor | |
{ | |
[JsonProperty("logic")] | |
public string Logic { get; set; } | |
[JsonProperty("filters")] | |
public ICollection<CompositeFilterDescriptor> Filters { get; set; } | |
[JsonProperty("field")] | |
public string Field { get; set; } | |
[JsonProperty("operator")] | |
public string Operator { get; set; } | |
[JsonProperty("value")] | |
public object Value { get; set; } | |
[JsonProperty("ignoreCase")] | |
public bool? IgnoreCase { get; set; } | |
} |
public class RequestDto | |
{ | |
public CompositeFilterDescriptor Filters { get; set; } | |
public Page Page { get; set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment