Initial commit

Made-with: Cursor
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-03-25 05:21:08 +02:00
commit 0625cd4157
90 changed files with 3430 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using Azaion.Flights.Enums;
namespace Azaion.Flights.DTOs;
public class UpdateAircraftRequest
{
public AircraftType? Type { get; set; }
public string? Model { get; set; }
public string? Name { get; set; }
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; }
}