Files
SimonSayeBabu bd1057cec0 first commit
2025-01-17 13:10:20 +01:00

25 lines
439 B
C#

using System;
namespace Unity.VisualScripting.Dependencies.NCalc
{
public class ParameterArgs : EventArgs
{
private object _result;
public object Result
{
get
{
return _result;
}
set
{
_result = value;
HasResult = true;
}
}
public bool HasResult { get; set; }
}
}