using System.Collections.Generic; namespace TLang.VM { public class Class { public string Name {get;set;}=""; public string InheritsFrom {get;set;}=""; public List ClassEntries {get;set;}=new List(); } }