mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 21:56:32 +00:00
0625cd4157
Made-with: Cursor
16 lines
488 B
C#
16 lines
488 B
C#
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; }
|
|
}
|