mirror of
https://github.com/azaion/missions.git
synced 2026-06-21 21:01:07 +00:00
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.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user