feat (db): add brilo remote entites

This commit is contained in:
2024-07-29 13:42:54 +02:00
parent 6cd3e95e18
commit e929853bb2
6 changed files with 99 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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,
) {
}
}