Files
BlazorDeviceInterop/Darnton.Blazor.DeviceInterop/Geolocation/GeolocationEventArgs.cs
T

16 lines
488 B
C#

using System;
namespace Darnton.Blazor.DeviceInterop.Geolocation
{
/// <summary>
/// Geolocation event data. Provides the <see cref="GeolocationResult"/> with the position or error associated with the event.
/// </summary>
public class GeolocationEventArgs : EventArgs
{
/// <summary>
/// The <see cref="GeolocationResult"/> associated with the event.
/// </summary>
public GeolocationResult GeolocationResult { get; set; }
}
}