using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.CodeGeneration
{
///
/// Represents enumeration code file.
///
///
public class EnumerationFile : CodeFile
{
///
/// Gets or sets enum the name.
///
public String Name { get; set; }
///
/// Gets or sets the collection of enum fields.
///
public List Fields { get; set; }
///
/// Initializes a new instance of the class.
///
public EnumerationFile()
{
Fields = new List();
}
}
}