aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-03-19 18:16:30 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-03-19 18:16:30 +0200
commitc16f47eb401a12f034eecf75924680262285e1f4 (patch)
treef13693f0f5c58edd66211197b5ed360fdab32118 /Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs
parent96352ac46ccb871783c63fd98efe034091214b7e (diff)
downloadTango-c16f47eb401a12f034eecf75924680262285e1f4.tar.gz
Tango-c16f47eb401a12f034eecf75924680262285e1f4.zip
Working on android DAL.
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs')
-rw-r--r--Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs34
1 files changed, 34 insertions, 0 deletions
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
+{
+ /// <summary>
+ /// Represents a database entity Java code file.
+ /// </summary>
+ /// <seealso cref="Tango.CodeGeneration.Class" />
+ public class EntityCodeFileJavaExtension : Class
+ {
+ /// <summary>
+ /// Gets or sets the extends.
+ /// </summary>
+ public String Extends { get; set; }
+
+ /// <summary>
+ /// Gets or sets the name of the table.
+ /// </summary>
+ public String TableName { get; set; }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="EntityCodeFileJavaExtension"/> class.
+ /// </summary>
+ /// <param name="name">The name.</param>
+ public EntityCodeFileJavaExtension(String name, String extends) : base(name)
+ {
+ Extends = extends;
+ }
+ }
+}