mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
28 lines
712 B
C#
28 lines
712 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using Serein.Library;
|
|
using Serein.NodeFlow.Model;
|
|
using Serein.Workbench.Avalonia.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Serein.Workbench.Avalonia.Custom.Node.ViewModels
|
|
{
|
|
internal partial class ActionNodeViewModel : NodeViewModelBase
|
|
{
|
|
[ObservableProperty]
|
|
private SingleActionNode? nodeMoel;
|
|
|
|
|
|
internal override NodeModelBase NodeModelBase
|
|
{ get => NodeMoel ?? throw new NotImplementedException(); set => NodeMoel = (SingleActionNode)value; }
|
|
|
|
public ActionNodeViewModel()
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|