mirror of
https://github.com/4sval/FModel.git
synced 2026-03-22 01:34:37 -05:00
25 lines
471 B
C#
25 lines
471 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using FModel.Framework;
|
|
|
|
namespace FModel.ViewModels.Nodify;
|
|
|
|
public abstract class NodeViewModel : ViewModel
|
|
{
|
|
public NodifyEditorViewModel Graph { get; set; }
|
|
|
|
private Point _location;
|
|
public Point Location
|
|
{
|
|
get => _location;
|
|
set => SetProperty(ref _location, value);
|
|
}
|
|
|
|
public Orientation Orientation { get; protected set; }
|
|
|
|
protected NodeViewModel()
|
|
{
|
|
|
|
}
|
|
}
|