You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
599 B
29 lines
599 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace sf1.Models
|
|
{
|
|
public class ICRUDModel<T> 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<T> added { get; set; }
|
|
|
|
public List<T> changed { get; set; }
|
|
|
|
public List<T> deleted { get; set; }
|
|
|
|
public IDictionary<string, object> @params { get; set; }
|
|
}
|
|
}
|