using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace Tango.SQLExaminer { public class Table { [XmlAttribute("schema")] public String Schema { get; set; } [XmlAttribute("name")] public String Name { get; set; } [XmlAttribute("allowDelete")] public String AllowDelete { get; set; } [XmlAttribute("allowInsert")] public String AllowInsert { get; set; } [XmlAttribute("allowUpdate")] public String AllowUpdate { get; set; } public List KeyColumns { get; set; } public List UpdateColumns { get; set; } public Table() { KeyColumns = new List(); UpdateColumns = new List(); } } }