using System.Collections.Generic; namespace AyaNova.Models { //common base class for data table display at client, reporting and mass bulk operations public class DataListProcessingBase { public string DataListKey { get; set; } public Dictionary SortBy { get; set; } public List Filter { get; set; } public string ClientCriteria { get; set; } public DataListProcessingBase() { SortBy = new Dictionary(); Filter = new List(); } } }