mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 00:56:31 +02:00
10 lines
273 B
C#
10 lines
273 B
C#
namespace YesNt.Interpreter.Runtime;
|
|
|
|
internal class Line(string content, string fileName, int lineNumber)
|
|
{
|
|
public string Content { get; set; } = content;
|
|
|
|
public string FileName { get; set; } = fileName;
|
|
|
|
public int LineNumber { get; set; } = lineNumber;
|
|
} |