mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 23:01:44 +01:00
11 lines
253 B
C#
11 lines
253 B
C#
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; }
|
|
}
|
|
}
|