Update project name and namespaces

This commit is contained in:
ahjephson
2024-10-22 09:57:50 +01:00
parent e83488326b
commit 170b2ca601
226 changed files with 2776 additions and 848 deletions

View File

@@ -0,0 +1,43 @@
using Lantean.QBTMud.EventHandlers;
using MudBlazor;
namespace Lantean.QBTMud.Components.UI
{
public class TableDataLongPressEventArgs<T> : EventArgs
{
//
// Summary:
// The coordinates of the click.
public LongPressEventArgs LongPressEventArgs { get; }
//
// Summary:
// The row which was clicked.
public MudTd Data { get; }
//
// Summary:
// The data related to the row which was clicked.
public T? Item { get; }
//
// Summary:
// Creates a new instance.
//
// Parameters:
// mouseEventArgs:
// The coordinates of the click.
//
// row:
// The row which was context-clicked.
//
// item:
// The data related to the row which was context-clicked.
public TableDataLongPressEventArgs(LongPressEventArgs longPressEventArgs, MudTd data, T? item)
{
LongPressEventArgs = longPressEventArgs;
Data = data;
Item = item;
}
}
}