using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.CodeGeneration
{
///
/// Represents a namespace code object.
///
///
public class Namespace : CodeObject
{
///
/// Gets or sets the namespace name.
///
public String Name { get; set; }
///
/// Gets or sets the classes section.
///
public List Classes { get; set; }
///
/// Initializes a new instance of the class.
///
public Namespace()
: base()
{
Classes = new List();
Modifier = CodeObjectModifier.None;
}
///
/// Initializes a new instance of the class.
///
/// The name.
public Namespace(String name) : this()
{
Name = name;
}
}
}