tlang-runtime-compiler/TLang.Parser/ClassEntryNode.cs

12 lines
323 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
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;
}
}