using System.Collections.Concurrent; namespace Azaion.Common.DTO; public class DownloadTilesResult { public ConcurrentDictionary<(int x, int y), byte[]> Tiles { get; set; } = null!; public double LatMin { get; set; } public double LatMax { get; set; } public double LonMin { get; set; } public double LonMax { get; set; } }