mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 09:06:30 +00:00
Initial commit
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Azaion.Flights.Enums;
|
||||
|
||||
namespace Azaion.Flights.DTOs;
|
||||
|
||||
public class CreateAircraftRequest
|
||||
{
|
||||
public AircraftType Type { get; set; }
|
||||
public string Model { get; set; } = string.Empty;
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public FuelType FuelType { get; set; }
|
||||
public decimal BatteryCapacity { get; set; }
|
||||
public decimal EngineConsumption { get; set; }
|
||||
public decimal EngineConsumptionIdle { get; set; }
|
||||
public bool IsDefault { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user