using System.Collections.Generic; namespace Bootstrap.Admin.Models { public class QueryData where T : class { public int total { get; set; } public IEnumerable rows { get; set; } } }