18 lines
474 B
C#
18 lines
474 B
C#
|
|
// Licensed to the .NET Foundation under one or more agreements.
|
||
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
||
|
|
|
||
|
|
namespace Microsoft.Maui.Platform.Linux.Services;
|
||
|
|
|
||
|
|
public class DropEventArgs : EventArgs
|
||
|
|
{
|
||
|
|
public DragData Data { get; }
|
||
|
|
public string? DroppedData { get; }
|
||
|
|
public bool Handled { get; set; }
|
||
|
|
|
||
|
|
public DropEventArgs(DragData data, string? droppedData)
|
||
|
|
{
|
||
|
|
Data = data;
|
||
|
|
DroppedData = droppedData;
|
||
|
|
}
|
||
|
|
}
|