12 lines
265 B
C#
12 lines
265 B
C#
|
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>();
|
||
|
}
|
||
|
}
|