blob: 038055cb9a99c4a26e3aa09ece64c591d384037e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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; }
}
}
|