mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
22 lines
560 B
C#
22 lines
560 B
C#
using System.Xml.Serialization;
|
|
using AIStudio.Wpf.DiagramDesigner;
|
|
using AIStudio.Wpf.DiagramDesigner.Additionals.Extensions.ViewModels;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner.Additionals.Extensions.Models
|
|
{
|
|
public class PersistDesignerItem : DesignerItemBase
|
|
{
|
|
public PersistDesignerItem()
|
|
{
|
|
|
|
}
|
|
public PersistDesignerItem(PersistDesignerItemViewModel item) : base(item)
|
|
{
|
|
this.HostUrl = item.HostUrl;
|
|
}
|
|
|
|
[XmlAttribute]
|
|
public string HostUrl { get; set; }
|
|
}
|
|
}
|