diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs | 34 |
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; + } + } +} |
