Platform.TryGetCurrentLocationAsync

This commit is contained in:
Paul Schneider 2026-09-02 14:41:05 +01:00
commit 3b9d296a52
11 changed files with 395 additions and 46 deletions

View file

@ -30,6 +30,6 @@ public sealed class BillingQueryDetailsDto
public sealed class BillingLocationDto
{
public string Address { get; set; } = string.Empty;
public double Latitude { get; set; }
public double Longitude { get; set; }
}
public double? Latitude { get; set; }
public double? Longitude { get; set; }
}