mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-18 07:26:36 +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 )
|
|||
|
|
//}
|
|||
|
|
}
|
|||
|
|
}
|