mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-02 15:50:51 +08:00
25 lines
429 B
C#
25 lines
429 B
C#
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public class MediaDesignerItem : DesignerItemBase
|
|
{
|
|
public MediaDesignerItem()
|
|
{
|
|
|
|
}
|
|
|
|
public MediaDesignerItem(GifImageItemViewModel item) : base(item)
|
|
{
|
|
|
|
}
|
|
|
|
public MediaDesignerItem(MediaItemViewModel item) : base(item)
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|