Platform.TryGetCurrentLocationAsync
All checks were successful
Dotnet build and test / build (pull_request) Successful in 8m30s

This commit is contained in:
Paul Schneider 2026-09-02 14:41:05 +01:00
commit 914e9486b5
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
11 changed files with 395 additions and 46 deletions

View file

@ -286,12 +286,22 @@ public sealed class BillingApiClient
return null;
}
return new
var payload = new Dictionary<string, object?>
{
Address = location.Address,
Latitude = location.Latitude,
Longitude = location.Longitude,
["Address"] = location.Address,
};
if (location.Latitude.HasValue)
{
payload["Latitude"] = location.Latitude.Value;
}
if (location.Longitude.HasValue)
{
payload["Longitude"] = location.Longitude.Value;
}
return payload;
}
private sealed class BillingLocationResponse
@ -351,4 +361,4 @@ public sealed class BillingApiClient
{
public long PrestationId { get; set; }
}
}
}