namespace SatelliteProvider.Common.Configs; public class MapConfig { public string Service { get; set; } = null!; public string ApiKey { get; set; } = null!; // AZ-371 / C18 — Google Maps tile constants promoted from source literals. public int TileSizePixels { get; set; } = 256; public int[] AllowedZoomLevels { get; set; } = new[] { 15, 16, 17, 18, 19 }; public int RetryBaseDelaySeconds { get; set; } = 1; public int RetryMaxDelaySeconds { get; set; } = 30; }