11 lines
202 B
C#
Raw Normal View History

2019-06-12 21:56:55 +02:00
using System.Collections.Generic;
namespace CapnpC.Model
{
interface IHasNestedDefinitions
{
List<TypeDefinition> NestedTypes { get; }
List<Value> Constants { get; }
}
}