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

16 lines
395 B
C#

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