This commit is contained in:
2020-11-24 22:34:31 +00:00
parent e02cb24966
commit e89f508f99
5 changed files with 59 additions and 8 deletions

View File

@@ -8,7 +8,8 @@ namespace AyaNova.Models
public long ReportId { get; set; }
public long[] SelectedRowIds { get; set; }
public string DataListKey { get; set; }
public string ListView { get; set; }//optional, if null or empty will use default list view built into DataList
public string ListView { get; set; }//optional, if null or empty will use default list view built into DataList
public string MetaView { get; set; }//optional meta list view to integrate into the standard list view. Used by client to add "meta" filter conditions above the user's choices e.g. customer notes customer id
public JToken ClientMeta {get;set;}//meta JSON data passed from client, not part of biz object data
}