Files
bluflame/intromat/Intromat/ViewModels/Editors/StringExpressionEditorViewModel.cs
2026-04-18 22:31:51 +02:00

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>));
}
}
}