14 lines
248 B
PHP
14 lines
248 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Modules\Booking\Data;
|
||
|
|
|
||
|
|
use Modules\Shared\Enums\VehicleOption;
|
||
|
|
|
||
|
|
readonly class VehicleSelectionData
|
||
|
|
{
|
||
|
|
public function __construct(
|
||
|
|
public VehicleOption $vehicleOption,
|
||
|
|
public int $passengerCount = 1,
|
||
|
|
) {}
|
||
|
|
}
|