Christian Köllner cbf2144ef4 Initial commit
2019-06-12 21:56:55 +02:00

11 lines
202 B
C#

using System.Collections.Generic;
namespace CapnpC.Model
{
interface IHasNestedDefinitions
{
List<TypeDefinition> NestedTypes { get; }
List<Value> Constants { get; }
}
}