Files
bluflame/intromat/Intromat/Interfaces/IExpressionEditor.cs
2026-04-18 22:31:51 +02:00

21 lines
364 B
C#

using Intromat.Nodes.Code;
using Intromat.ViewModels;
namespace Intromat.Interfaces
{
public interface IExpressionEditor
{
ERelativeSource RelativeSource
{
get;
set;
}
bool HasParentSource { get; }
bool HasInputSource { get; }
CodeGenPortViewModel CodeGenPort { get; }
}
}