From 3e665934f3f01b2cdd3de3fbc2c03ae27ac5740e Mon Sep 17 00:00:00 2001 From: Roy Date: Wed, 6 Dec 2017 10:11:45 +0200 Subject: Moved ExtendedObject & RelayCommand to Core. CodeGeneration EntityCodeFile working + cycle reference! --- .../Tango.CodeGeneration/EntityCodeFile.cs | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFile.cs') 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 Fields { get; set; } + + public EntityCodeFile(String name) : base(name) + { + Fields = new List(); + } + } + + 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; } + } +} -- cgit v1.3.1