// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.Blazor.RenderTree
{
///
/// Supplies information about an event that is being raised.
///
public class UIEventArgs
{
///
/// Gets or sets the type of the event.
///
public string Type { get; set; }
}
///
/// Supplies information about a mouse event that is being raised.
///
public class UIMouseEventArgs : UIEventArgs
{
}
///
/// Supplies information about a keyboard event that is being raised.
///
public class UIKeyboardEventArgs : UIEventArgs
{
///
/// If applicable, gets or sets the key that produced the event.
///
public string Key { get; set; }
}
}