Files
missions/DTOs/UpdateVehicleRequest.cs
T
Oleksandr Bezdieniezhnykh 4f226e91d5 feat: implement missions and vehicles management with CRUD operations
Added new project structure for Azaion.Missions, including the MissionsController and VehiclesController for handling mission and vehicle management. Implemented DTOs for mission and vehicle creation and updates, along with service classes for business logic. Introduced database entities for Mission and Vehicle, and established relationships for data handling. Configured project dependencies and set up initial project properties.
2026-05-15 04:35:40 +03:00

16 lines
464 B
C#

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; }
}