diff options
| author | Avi Levkovich <avi@twine-s.com> | 2017-12-10 11:18:02 +0200 |
|---|---|---|
| committer | Avi Levkovich <avi@twine-s.com> | 2017-12-10 11:18:02 +0200 |
| commit | f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047 (patch) | |
| tree | aa28e09c5d4c4a7da8e5fe5e00ffe355f6fc5a3f /Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs | |
| parent | 8eec69d8933841f4e45fd9e63010bff51ae64a27 (diff) | |
| parent | 9a34f6f6456702440ecd50f902e59daa2ea77595 (diff) | |
| download | Tango-f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047.tar.gz Tango-f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047.zip | |
MERGE.
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; } + } +} |
