Files
satellite-provider/SatelliteProvider.Common/DTO/CreateRouteRequest.cs
T
Anton Martynenko 661396554f zip file for tiles
2025-11-20 12:17:57 +01:00

22 lines
596 B
C#

using System.Text.Json.Serialization;
namespace SatelliteProvider.Common.DTO;
public class CreateRouteRequest
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public double RegionSizeMeters { get; set; }
public int ZoomLevel { get; set; }
public List<RoutePoint> Points { get; set; } = new();
[JsonPropertyName("geofences")]
public Geofences? Geofences { get; set; }
public bool RequestMaps { get; set; } = false;
public bool CreateTilesZip { get; set; } = false;
}