namespace SatelliteProvider.Common.DTO; public record SatelliteTile { public string TileId { get; set; } = string.Empty; public byte[] ImageData { get; set; } = Array.Empty(); public double Lat { get; set; } public double Lon { get; set; } public int ZoomLevel { get; set; } }