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 NestedTypes { get; } = new List(); public List Constants { get; } = new List(); } }