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