using System.Collections.Generic; namespace BuddyFinance.WebApi.Models.DataTables { public abstract class Response where T : Integration.Models.Administration.ActivityLog { public int draw { get; set; } public int recordsTotal { get; set; } public int recordsFiltered { get; set; } public IList data { get; set; } } }