15 lines
422 B
C#
15 lines
422 B
C#
using Intromat.Views.Editors;
|
|
using NodeNetwork.Toolkit.ValueNode;
|
|
using ReactiveUI;
|
|
using Splat;
|
|
|
|
namespace Intromat.ViewModels.Editors
|
|
{
|
|
public class BooleanValueEditorViewModel : ValueEditorViewModel<bool>
|
|
{
|
|
static BooleanValueEditorViewModel()
|
|
{
|
|
Locator.CurrentMutable.Register(() => new BooleanValueEditorView(), typeof(IViewFor<BooleanValueEditorViewModel>));
|
|
}
|
|
}
|
|
} |