This commit is contained in:
2021-01-29 19:58:21 +00:00
parent b7077cdd7e
commit 6899cb632f
4 changed files with 14 additions and 5 deletions

View File

@@ -16,10 +16,12 @@ namespace AyaNova.Models
public string Name { get; set; }//max 255 characters ascii set
[Required]
public bool Public { get; set; }
[Required]
public bool Default { get; set; } //is the users default filter for this listkey
[Required, MaxLength(255)]
public string ListKey { get; set; }//max 255 characters ascii set
public string Filter { get; set; }//JSON filter object representing DataListFilterOption
//filter:[{column:"PartPartNumber",any:true/false,items:[{op: "=",value: "400735"}]}]
public string Filter { get; set; }//JSON serialized List<DataListFilterOption> object of DataListBase
}