This commit is contained in:
2018-12-03 19:12:35 +00:00
parent 1a90226002
commit 51941a958e
10 changed files with 270 additions and 65 deletions

View File

@@ -18,9 +18,13 @@ namespace AyaNova.Api.ControllerHelpers
[Range(1, MaxPageSize, ErrorMessage = "Limit must be greater than 0 and less than 100.")]
public int? Limit { get; set; }
public string Sort {get;set;}
public bool? Asc {get;set;}
public string Sort { get; set; }
public bool? Asc { get; set; }
//Data filter id to use with this list query
//0 or less means no filter
public long DataFilterId { get; set; }
}