16 lines
395 B
C#
Raw Normal View History

2019-06-12 21:56:55 +02:00
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>();
}
}