mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-04-21 18:46:31 +02: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; }
|
|
}
|
|
}
|