Files
2025-07-20 13:47:56 +10:00

16 lines
419 B
C#

using System.Collections;
namespace Disco.Services.Expressions
{
public interface IExpressionPart
{
string RawSource { get; set; }
string Source { get; set; }
bool ErrorsAllowed { get; set; }
bool ParseError { get; }
string ParseErrorMessage { get; }
bool IsDynamic { get; set; }
object Evaluate(object ExpressionContext, IDictionary Variables);
}
}