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