From afc7a07d285e08d905c58dd5978441c155b2f296 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 19 Dec 2017 10:25:40 +0200 Subject: MERGE. --- .../Tango.CodeGeneration/EntityCodeFileJava.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs new file mode 100644 index 000000000..d2bfd80fc --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + public class EntityCodeFileJava : Class + { + public String EntityName { get; set; } + + public String TableName { get; set; } + + public List Fields { get; set; } + + public EntityCodeFileJava(String name) : base(name) + { + Fields = new List(); + } + } +} -- cgit v1.3.1