mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
19 lines
491 B
C#
19 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
// Wraps info of the dragged object into a class
|
|
public class DragObject
|
|
{
|
|
public Size? DesiredSize { get; set; }
|
|
public Type ContentType { get; set; }
|
|
public string Icon { get; set; }
|
|
public IColorViewModel ColorViewModel { get; set; }
|
|
public object DesignerItem { get; set; }
|
|
}
|
|
}
|