16 lines
366 B
C#
16 lines
366 B
C#
using System.Windows;
|
|
|
|
namespace CopaData.FileInspector.GUI.TilingPanels.Controls.DragAndDrop;
|
|
|
|
public class DragAndDropData
|
|
{
|
|
public FrameworkElement DraggedElement { get; }
|
|
public object DataModel { get; }
|
|
|
|
public DragAndDropData(FrameworkElement draggedElement, object dataModel)
|
|
{
|
|
DraggedElement = draggedElement;
|
|
DataModel = dataModel;
|
|
}
|
|
}
|