using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace Tango.SQLExaminer { [XmlRoot("config")] public class ExaminerConfiguration : ExaminerSerializedObject { [XmlAttribute("version")] public int Version { get; set; } [XmlAttribute("maker")] public String Maker { get; set; } public List DataSources { get; set; } public List Actions { get; set; } public Options Options { get; set; } public Objects Objects { get; set; } [XmlIgnore] public ExaminerConfigurationType ConfigurationType { get; set; } public ExaminerConfiguration() { Version = 2; Maker = "Twine"; DataSources = new List(); Actions = new List(); Options = new Options(); Objects = new Objects(); } } }