mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-13 07:11:44 +01:00
11 lines
202 B
C#
11 lines
202 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CapnpC.Model
|
|||
|
{
|
|||
|
interface IHasNestedDefinitions
|
|||
|
{
|
|||
|
List<TypeDefinition> NestedTypes { get; }
|
|||
|
List<Value> Constants { get; }
|
|||
|
}
|
|||
|
}
|