download 1 tile, first integration test

This commit is contained in:
Anton Martynenko
2025-10-28 12:04:09 +01:00
parent f676e510cd
commit d361fe70ab
12 changed files with 507 additions and 7 deletions
@@ -0,0 +1,17 @@
namespace SatelliteProvider.Common.DTO;
public class TileMetadata
{
public Guid Id { get; set; }
public int ZoomLevel { get; set; }
public double Latitude { get; set; }
public double Longitude { get; set; }
public double TileSizeMeters { get; set; }
public int TileSizePixels { get; set; }
public string ImageType { get; set; } = string.Empty;
public string? MapsVersion { get; set; }
public string FilePath { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}