|
namespace TLang.Parser
|
|
{
|
|
public class ClassEntryNode : Node
|
|
{
|
|
public string Name {get;set;}="";
|
|
public string Modifier {get;set;}="";
|
|
|
|
public string Documentation {get;set;}="";
|
|
public Node InitialValue {get;set;}=new Node();
|
|
public bool Abstract { get; set; }=false;
|
|
}
|
|
} |