diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs index 194cd0fc1..0ff4f47d0 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs +++ b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs @@ -10,7 +10,7 @@ namespace Tango.CodeGeneration /// Represents a database entity Java code file. /// </summary> /// <seealso cref="Tango.CodeGeneration.Class" /> - public class EntityCodeFileJava : Class + public class EntityCodeFileJava : Class { /// <summary> /// Gets or sets the name of the entity. @@ -18,6 +18,11 @@ namespace Tango.CodeGeneration public String EntityName { get; set; } /// <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; } |
