using System; namespace Darnton.Blazor.DeviceInterop.Geolocation { /// /// The reason for a Geolocation error, based on . /// public class GeolocationPositionError { /// /// The for the error. /// public GeolocationPositionErrorCode Code { get; set; } /// /// Details of the error. Intended for debugging rather than display to the user. /// public string Message { get; set; } } }