From c16f47eb401a12f034eecf75924680262285e1f4 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 19 Mar 2018 18:16:30 +0200 Subject: Working on android DAL. --- .../EntityCodeFileJavaExtension.cs | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs new file mode 100644 index 000000000..99ea437a6 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + /// + /// Represents a database entity Java code file. + /// + /// + public class EntityCodeFileJavaExtension : Class + { + /// + /// Gets or sets the extends. + /// + public String Extends { get; set; } + + /// + /// Gets or sets the name of the table. + /// + public String TableName { get; set; } + + /// + /// Initializes a new instance of the class. + /// + /// The name. + public EntityCodeFileJavaExtension(String name, String extends) : base(name) + { + Extends = extends; + } + } +} -- cgit v1.3.1