12 lines
323 B
C#
12 lines
323 B
C#
|
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;
|
||
|
}
|
||
|
}
|