mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 22:16:38 +00:00
22 lines
596 B
C#
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;
|
|
}
|
|
|