This commit is contained in:
16
server/AyaNova/models/dto/RenderReportParameter.cs
Normal file
16
server/AyaNova/models/dto/RenderReportParameter.cs
Normal 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
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user