18 lines
303 B
PHP
18 lines
303 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity\Remote\Brilo\Users;
|
|
|
|
readonly class Address
|
|
{
|
|
public function __construct(
|
|
public string $street,
|
|
public string $suite,
|
|
public string $city,
|
|
public string $zipcode,
|
|
public AddressGeo $geo,
|
|
) {
|
|
}
|
|
}
|