mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-13 07:11:44 +01:00
16 lines
395 B
C#
16 lines
395 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace CapnpC.Model
|
|||
|
{
|
|||
|
class GenFile: IHasNestedDefinitions
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string[] Namespace { get; set; }
|
|||
|
|
|||
|
public List<TypeDefinition> NestedTypes { get; } = new List<TypeDefinition>();
|
|||
|
public List<Value> Constants { get; } = new List<Value>();
|
|||
|
}
|
|||
|
}
|