aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/RemoteSqlColumn.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-03 12:16:21 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-08-03 12:16:21 +0300
commitbd1221e36ee3e493dc25bd32559f846519fe60d0 (patch)
treee4462d6672223b1fb43ee017e256e13301cec9f2 /Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/RemoteSqlColumn.cs
parent99cbacc067251a3841fc1aca99e029146ed11c15 (diff)
downloadTango-bd1221e36ee3e493dc25bd32559f846519fe60d0.tar.gz
Tango-bd1221e36ee3e493dc25bd32559f846519fe60d0.zip
Refactored RemoteSQL on procedures.
Fixed issue with generic types display on code editor. Added line wrap toggle to procedure designer output.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/RemoteSqlColumn.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/RemoteSqlColumn.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/RemoteSqlColumn.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/RemoteSqlColumn.cs
new file mode 100644
index 000000000..328dbb492
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/SQL/RemoteSqlColumn.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.PPC.Shared.SQL
+{
+ public class RemoteSqlColumn
+ {
+ public String Name { get; set; }
+ public int Index { get; set; }
+
+ public RemoteSqlColumn()
+ {
+
+ }
+
+ public RemoteSqlColumn(String name)
+ {
+ Name = name;
+ }
+ }
+}