mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
24 lines
517 B
C#
24 lines
517 B
C#
using Util.DiagramDesigner;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIStudio.Wpf.ADiagram.Demos.Others
|
|
{
|
|
public class SettingsDesignerItem : DesignerItemBase
|
|
{
|
|
public SettingsDesignerItem()
|
|
{
|
|
|
|
}
|
|
public SettingsDesignerItem(SettingsDesignerItemViewModel item) : base(item)
|
|
{
|
|
this.Setting = item.Setting;
|
|
}
|
|
|
|
public string Setting { get; set; }
|
|
}
|
|
}
|