using System.Collections.Generic; namespace TLang.Parser { public class ClassNode : Node { public string Documentation {get;set;} public string Name {get;set;} public string InheritsFrom {get;set;}="object"; public List Entries {get;set;}=new List(); } }