mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 21:56:32 +00:00
0625cd4157
Made-with: Cursor
13 lines
338 B
C#
13 lines
338 B
C#
using Azaion.Flights.Enums;
|
|
|
|
namespace Azaion.Flights.DTOs;
|
|
|
|
public class CreateWaypointRequest
|
|
{
|
|
public GeoPoint? GeoPoint { get; set; }
|
|
public WaypointSource WaypointSource { get; set; }
|
|
public WaypointObjective WaypointObjective { get; set; }
|
|
public int OrderNum { get; set; }
|
|
public decimal Height { get; set; }
|
|
}
|