namespace Svrnty.GeoManagement.Google.Configuration; /// /// Configuration options for Google Geocoding API /// public class GoogleGeoManagementOptions { /// /// Google Maps API key for authentication /// public string ApiKey { get; set; } = string.Empty; /// /// Optional language code for address results (e.g., "en", "fr", "de") /// public string? Language { get; set; } /// /// Optional region code for biasing results (e.g., "us", "uk", "ca") /// public string? Region { get; set; } }