This commit is contained in:
2021-01-27 18:57:45 +00:00
parent 0e3896925f
commit ef68eca416
3 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
using AyaNova.Biz;
using Newtonsoft.Json.Linq;
namespace AyaNova.Models
{
public class DataListReportSelectionOptions : DataListSelectionOptions
{
public long ReportId { get; set; }
public JToken ClientMeta { get; set; }//meta JSON data passed from client, not part of biz object data
//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 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
}
}