Files
radzen-blazor/Radzen.Blazor/GoogleMapClickEventArgs.cs

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; }
}