mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
14 lines
359 B
C#
14 lines
359 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Supplies information about a <see cref="Radzen.Blazor.RadzenGoogleMap.MapClick" /> event that is being raised.
|
|
/// </summary>
|
|
public class GoogleMapClickEventArgs
|
|
{
|
|
/// <summary>
|
|
/// The position which represents the clicked map location.
|
|
/// </summary>
|
|
public GoogleMapPosition? Position { get; set; }
|
|
}
|
|
|