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 Action { [XmlAttribute("type")] public String Type { get; set; } [XmlAttribute("path")] public String Path { get; set; } [XmlAttribute("reportType")] public String ReportType { get; set; } [XmlAttribute("reportOn")] public String ReportOn { get; set; } public Action() { Type = "synchronize"; } } }