mirror of
https://github.com/farcasclaudiu/BlazorDeviceInterop.git
synced 2026-06-22 09:01:04 +03:00
Reorganise project structure and namespaces. Remove Leaflet project and replace with Darnton.Blazor.Leaflet package.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user