Update InputInterpreter.cs

This commit is contained in:
Jordan Wages 2025-08-26 02:28:22 -05:00
commit ead706e38b

View file

@ -45,11 +45,37 @@ namespace CSMic
#region Properties #region Properties
public decimal NumericValue => numericValue; public decimal NumericValue
public string StringValue => stringValue; {
get
{
return this.numericValue;
}
}
public TimeSpan LastExecutionTime => lastExecutionTime; public string StringValue
{
get
{
return this.stringValue;
}
}
public TimeSpan LastExecutionTime
{
get
{
return this.lastExecutionTime;
}
}
public IEnumerable<Variable> Variables
{
get
{
return null;
}
}
#endregion #endregion
#region Output Plumbing #region Output Plumbing