21 lines
364 B
C#
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; }
|
|
}
|
|
}
|