tlang-runtime-compiler/TLang.VM/Class.cs

12 lines
265 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
using System.Collections.Generic;
namespace TLang.VM
{
public class Class
{
public string Name {get;set;}="";
public string InheritsFrom {get;set;}="";
public List<ClassEntry> ClassEntries {get;set;}=new List<ClassEntry>();
}
}