using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace App.Models { public class ICRUDModel where T : class { public string action { get; set; } public string table { get; set; } public string keyColumn { get; set; } public object key { get; set; } public T value { get; set; } public List added { get; set; } public List changed { get; set; } public List deleted { get; set; } public IDictionary @params { get; set; } } }