using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.CodeGeneration
{
///
/// Represents a Java enumeration file.
///
///
public class EnumerationFileJava : CodeFile
{
///
/// Gets or sets the enum 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 EnumerationFileJava()
{
Fields = new List();
}
}
}