15 lines
480 B
C#
15 lines
480 B
C#
using Intromat.Nodes.Code;
|
|
using Intromat.Views.Editors;
|
|
using ReactiveUI;
|
|
using Splat;
|
|
|
|
namespace Intromat.ViewModels.Editors
|
|
{
|
|
public class StringExpressionEditorViewModel : ExpressionEditorBaseViewModel<string?, StringLiteralValue, StringLiteralModel>
|
|
{
|
|
static StringExpressionEditorViewModel()
|
|
{
|
|
Locator.CurrentMutable.Register(() => new StringExpressionEditorView(), typeof(IViewFor<StringExpressionEditorViewModel>));
|
|
}
|
|
}
|
|
} |