This commit is contained in:
2020-10-23 17:13:52 +00:00
parent 267e35bb45
commit 4bfa45f92c
4 changed files with 19 additions and 12 deletions

View File

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