10 lines
227 B
C#
10 lines
227 B
C#
using Windows.UI.Xaml;
|
|
|
|
namespace TheXamlGuy.TaskbarGroup.Flyout.Foundation
|
|
{
|
|
public record class Drag<TTarget>(DragEventArgs DragEventArgs) where TTarget : UIElement
|
|
{
|
|
public TTarget Target { get; }
|
|
}
|
|
}
|