16 lines
265 B
PHP
16 lines
265 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\BusProNet\Model;
|
|
|
|
class RegistrationResponse
|
|
{
|
|
public function __construct(
|
|
public readonly int $addressId,
|
|
public readonly int $personId,
|
|
public readonly bool $isNewRecord,
|
|
) {
|
|
}
|
|
}
|