aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2017-12-10 11:18:02 +0200
committerAvi Levkovich <avi@twine-s.com>2017-12-10 11:18:02 +0200
commitf8c0a7d42104cf01ef6c3b0d51503a91ee0d7047 (patch)
treeaa28e09c5d4c4a7da8e5fe5e00ffe355f6fc5a3f /Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs
parent8eec69d8933841f4e45fd9e63010bff51ae64a27 (diff)
parent9a34f6f6456702440ecd50f902e59daa2ea77595 (diff)
downloadTango-f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047.tar.gz
Tango-f8c0a7d42104cf01ef6c3b0d51503a91ee0d7047.zip
MERGE.
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs')
-rw-r--r--Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs34
1 files changed, 34 insertions, 0 deletions
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
+{
+ /// <summary>
+ /// Represents a file code object.
+ /// </summary>
+ /// <seealso cref="Tango.CodeGeneration.CodeObject" />
+ public class CodeFile : CodeObject
+ {
+ /// <summary>
+ /// Gets or sets the namespaces.
+ /// </summary>
+ public List<Namespace> Namespaces { get; set; }
+
+ /// <summary>
+ /// Gets or sets the using section.
+ /// </summary>
+ public List<String> Usings { get; set; }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="CodeFile"/> class.
+ /// </summary>
+ public CodeFile() : base()
+ {
+ Namespaces = new List<Namespace>();
+ Usings = new List<string>();
+ }
+ }
+}