This commit is contained in:
2021-01-28 00:07:26 +00:00
parent 3c40d63714
commit e4c1049ebc
4 changed files with 30 additions and 5 deletions

View File

@@ -9,6 +9,12 @@ namespace AyaNova.Models
public Dictionary<string, string> SortBy { get; set; }
public List<DataListFilterOption> Filter { get; set; }
public string ClientCriteria { get; set; }
public DataListBase()
{
SortBy = new Dictionary<string, string>();
Filter = new List<DataListFilterOption>();
}
}
/*