Files
YesNt-Interpreter/YesNt.Interpreter/Runtime/StatementInformation.cs
T
Stone-Red-Code 2a7e8074ba - Add functions
- Code improvements
2021-11-19 20:49:55 +01:00

16 lines
482 B
C#

using System;
using YesNt.Interpreter.Enums;
namespace YesNt.Interpreter.Runtime
{
public class StatementInformation
{
public string Name { get; internal set; }
public SearchMode SearchMode { get; internal set; }
public SpaceAround SpaceAround { get; internal set; }
public ConsoleColor Color { get; internal set; }
public bool IgnoreSyntaxHighlighting { get; internal set; }
public string Seperator { get; set; }
}
}