mirror of
https://github.com/farcasclaudiu/BlazorDeviceInterop.git
synced 2026-06-22 13:01:08 +03:00
16 lines
488 B
C#
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; }
|
|
}
|
|
}
|