Files
YesNt-Interpreter/YesNt.Interpreter/Runtime/Line.cs
T

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;
}