mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 09:06:41 +02:00
16 lines
482 B
C#
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; }
|
|
}
|
|
} |