LineNodeViewModel.cs 287 B

123456789
  1. using PixiEditor.ChangeableDocument.Changeables.Graph.Nodes.Shapes;
  2. using PixiEditor.ViewModels.Nodes;
  3. namespace PixiEditor.ViewModels.Document.Nodes.Shapes;
  4. [NodeViewModel("LINE_NODE", "SHAPE", PixiPerfectIcons.Line)]
  5. internal class LineNodeViewModel : NodeViewModel<LineNode>
  6. {
  7. }