This commit is contained in:
15
server/models/DataListReportProcessingOptions.cs
Normal file
15
server/models/DataListReportProcessingOptions.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Sockeye.Biz;
|
||||
using Sockeye.DataList;
|
||||
using Newtonsoft.Json.Linq;
|
||||
namespace Sockeye.Models
|
||||
{
|
||||
public class DataListReportProcessingOptions : DataListSelectedProcessingOptions
|
||||
{
|
||||
internal DataListReportProcessingOptions(DataListSelectedRequest request, IDataListProcessing dataList, DataListColumnView savedView, DataListSavedFilter savedFilter, long userId, AuthorizationRoles userRoles) : base(request, dataList, savedView, savedFilter, userId, userRoles)
|
||||
{
|
||||
}
|
||||
|
||||
public long ReportId { get; set; }
|
||||
public JToken ClientMeta { get; set; }//meta JSON data passed from client, not part of biz object data
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user