From cd22de677cf942c8bf82c8bbb6e02ee5630076eb Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Mon, 6 Aug 2018 09:19:53 +0300 Subject: Working on SQL Examiner Reports Loading.. --- .../Tango.SQLExaminer/ReportDbObject.cs | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Software/Visual_Studio/Tango.SQLExaminer/ReportDbObject.cs (limited to 'Software/Visual_Studio/Tango.SQLExaminer/ReportDbObject.cs') diff --git a/Software/Visual_Studio/Tango.SQLExaminer/ReportDbObject.cs b/Software/Visual_Studio/Tango.SQLExaminer/ReportDbObject.cs new file mode 100644 index 000000000..44e806e9e --- /dev/null +++ b/Software/Visual_Studio/Tango.SQLExaminer/ReportDbObject.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml.Serialization; + +namespace Tango.SQLExaminer +{ + [XmlType("DbObject")] + public class ReportDbObject + { + [XmlAttribute("name")] + public String Name { get; set; } + + [XmlAttribute("type")] + public String Type { get; set; } + + [XmlAttribute("differIn")] + public String DifferIn { get; set; } + + [XmlElement("Line")] + public List Lines { get; set; } + + public ReportDbObject() + { + Lines = new List(); + } + } +} -- cgit v1.3.1