FModel/FModel/ViewModels/Nodify/NodeViewModel.cs
2024-11-24 06:41:20 +01:00

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()
{
}
}