diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs new file mode 100644 index 000000000..a6512dbee --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + public class EntityCodeFile : Class + { + public String TableName { get; set; } + + public List<EntityCodeFileField> Fields { get; set; } + + public EntityCodeFile(String name) : base(name) + { + Fields = new List<EntityCodeFileField>(); + } + } + + public class EntityCodeFileField + { + public String Name { get; set; } + public String FieldName { get; set; } + public String Type { get; set; } + public String Description { get; set; } + public bool Construct { get; set; } + } +} |
