11 lines
253 B
C#
Raw Normal View History

2019-06-12 21:56:55 +02:00
namespace CapnpC.Model
{
class Enumerant
{
public TypeDefinition TypeDefinition { get; set; }
public string Literal { get; set; }
public ushort? Ordinal { get; set; }
public int CodeOrder { get; set; }
}
}