mirror of
https://github.com/azaion/satellite-provider.git
synced 2026-04-22 10:26:39 +00:00
14 lines
406 B
C#
14 lines
406 B
C#
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();
|
|
public bool RequestMaps { get; set; } = false;
|
|
}
|
|
|