mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-09 02:36:35 +08:00
25 lines
648 B
C#
25 lines
648 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public class BlockDesignerItemTempLink
|
|
{
|
|
List<BlockDesignerItemViewModel> Items
|
|
{
|
|
get;set;
|
|
} = new List<BlockDesignerItemViewModel>();
|
|
|
|
//public static List<BlockDesignerItemTempLink> Build(List<BlockDesignerItemViewModel> blocks)
|
|
//{
|
|
// List<BlockDesignerItemTempLink> links = new List<BlockDesignerItemTempLink>(){
|
|
// new BlockDesignerItemTempLink() };
|
|
|
|
// foreach(var )
|
|
//}
|
|
}
|
|
}
|