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(); } } }