mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 21:56:31 +00:00
12 lines
348 B
C#
12 lines
348 B
C#
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; }
|
|
} |