16 lines
410 B
C#
16 lines
410 B
C#
using AyaNova.Biz;
|
|
using Newtonsoft.Json.Linq;
|
|
namespace AyaNova.Models
|
|
{
|
|
public class DataListSelection
|
|
{
|
|
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
|
|
|
|
}
|
|
|
|
|
|
}
|