21 lines
772 B
C#
21 lines
772 B
C#
using AyaNova.Biz;
|
|
namespace AyaNova.Models
|
|
{
|
|
public class ObjectReportDataParameter
|
|
{
|
|
public AyaType ObjectType { 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 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
|
|
}
|
|
}
|