mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-02 15:50:51 +08:00
20 lines
399 B
C#
20 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Util.DiagramDesigner;
|
|
|
|
namespace AIStudio.Wpf.ADiagram.Demos.Others
|
|
{
|
|
public class PathDesignerItem : DesignerItemBase
|
|
{
|
|
public PathDesignerItem()
|
|
{
|
|
|
|
}
|
|
|
|
public PathDesignerItem(DesignerItemViewModelBase item) : base(item) { }
|
|
}
|
|
}
|