aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/CodeFile.cs
diff options
context:
space:
mode:
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>();
+ }
+ }
+}