mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-21 08:56:40 +08:00
26 lines
463 B
C#
26 lines
463 B
C#
using Util.DiagramDesigner;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace AIStudio.Wpf.ADiagram.Demos.Logical
|
|
{
|
|
public class LogicalGateItem : LogicalGateDesignerItemBase
|
|
{
|
|
public LogicalGateItem()
|
|
{
|
|
|
|
}
|
|
public LogicalGateItem(LogicalGateItemViewModel item) : base(item)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|