From 3689238cb9ca77cbd7fa34dbd15003af87266e36 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 4 Dec 2017 18:44:33 +0200 Subject: Added Code Generation Library. --- .../Visual_Studio/Tango.CodeGeneration/CodeFile.cs | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs (limited to 'Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs b/Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs new file mode 100644 index 000000000..8e10f0c28 --- /dev/null +++ b/Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.CodeGeneration +{ + /// + /// Represents a file code object. + /// + /// + public class CodeFile : CodeObject + { + /// + /// Gets or sets the namespaces. + /// + public List Namespaces { get; set; } + + /// + /// Gets or sets the using section. + /// + public List Usings { get; set; } + + /// + /// Initializes a new instance of the class. + /// + public CodeFile() : base() + { + Namespaces = new List(); + Usings = new List(); + } + } +} -- cgit v1.3.1