mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
20 lines
502 B
C#
20 lines
502 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using Serein.Library;
|
|
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
|
|
{
|
|
/// <summary>
|
|
/// 节点ViewModel基类
|
|
/// </summary>
|
|
internal abstract class NodeViewModelBase : ViewModelBase
|
|
{
|
|
internal abstract NodeModelBase NodeModelBase { get; set; }
|
|
}
|
|
}
|