mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-01 06:36:36 +08:00
15 lines
292 B
C#
15 lines
292 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using AIStudio.Wpf.Mind.ViewModels;
|
|
|
|
namespace AIStudio.Wpf.Mind.Helpers
|
|
{
|
|
public interface IMindLayout
|
|
{
|
|
void Appearance(MindNode mindNode);
|
|
void LayoutUpdated(MindNode mindNode);
|
|
|
|
}
|
|
}
|