using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.CodeGeneration { /// /// Represents a single enumeration field. /// public class EnumerationField { /// /// Gets or sets the field name. /// public String Name { get; set; } /// /// Gets or sets the value. /// public int Value { get; set; } /// /// Gets or sets an optional description. /// public String Description { get; set; } } }