aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs
diff options
context:
space:
mode:
authorRoy <roy.mail.net@gmail.com>2017-12-18 21:19:34 +0200
committerRoy <roy.mail.net@gmail.com>2017-12-18 21:19:34 +0200
commit05444891b280308b84ebf6b66e694b4885590884 (patch)
treeefe5b3574690db3663e360bc6dde6d95c152e2dd /Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs
parent563d85cd66a3fd212aa899e96321363123aaa3bc (diff)
downloadTango-05444891b280308b84ebf6b66e694b4885590884.tar.gz
Tango-05444891b280308b84ebf6b66e694b4885590884.zip
Auto Generate DAL entities for Java !!!
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs')
-rw-r--r--Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs
new file mode 100644
index 000000000..6a42326f7
--- /dev/null
+++ b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.CodeGeneration
+{
+ public class EnumerationFileJava : CodeFile
+ {
+ public String Name { get; set; }
+
+ public List<EnumerationField> Fields { get; set; }
+
+ public EnumerationFileJava()
+ {
+ Fields = new List<EnumerationField>();
+ }
+ }
+}