aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SQLExaminer/PerformanceOption.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-08-02 18:58:54 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-08-02 18:58:54 +0300
commit6d54a5d28753a675cca9bb57549dbc75986be118 (patch)
tree20654ce74d8f1ee0e036f8f1f1aa0292e3ee3aba /Software/Visual_Studio/Tango.SQLExaminer/PerformanceOption.cs
parent5efe56d0d4b2f4acd8cc275670955d68b7e196cf (diff)
downloadTango-6d54a5d28753a675cca9bb57549dbc75986be118.tar.gz
Tango-6d54a5d28753a675cca9bb57549dbc75986be118.zip
Working on SQL Examiner Library...
Diffstat (limited to 'Software/Visual_Studio/Tango.SQLExaminer/PerformanceOption.cs')
-rw-r--r--Software/Visual_Studio/Tango.SQLExaminer/PerformanceOption.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.SQLExaminer/PerformanceOption.cs b/Software/Visual_Studio/Tango.SQLExaminer/PerformanceOption.cs
new file mode 100644
index 000000000..c27c1fba8
--- /dev/null
+++ b/Software/Visual_Studio/Tango.SQLExaminer/PerformanceOption.cs
@@ -0,0 +1,18 @@
+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 PerformanceOption
+ {
+ [XmlAttribute("name")]
+ public String Name { get; set; }
+
+ [XmlAttribute("value")]
+ public String Value { get; set; }
+ }
+}