using Azaion.Missions.Enums; namespace Azaion.Missions.DTOs; public class UpdateVehicleRequest { public VehicleType? 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; } }