19 lines
587 B
C#
19 lines
587 B
C#
using System;
|
|
namespace AyaNova.Models
|
|
{
|
|
//common base class for REQUESTING a datalist from the client
|
|
public class DataListRequestBase
|
|
{
|
|
public string DataListKey { get; set; }
|
|
public string ClientCriteria { get; set; }
|
|
public long FilterId {get;set;}
|
|
public DateTimeOffset ClientTimeStamp {get;set;}
|
|
}
|
|
/*
|
|
REQUEST
|
|
BASE: DataListKey, ClientCriteria, FilterId
|
|
TABLEVERSION: Limit, Offset : base
|
|
REPORT/BULK OPS VERSION: AType(ayatype),SelectedRowIds(long[]) : base
|
|
*/
|
|
}
|