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