18 lines
333 B
PHP
18 lines
333 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Actions\UpdateTenantContact;
|
|
|
|
use App\Models\Tenant;
|
|
|
|
class UpdateTenantContactRequest
|
|
{
|
|
public function __construct(
|
|
public Tenant $tenant,
|
|
public string $email,
|
|
public string $emailFinance,
|
|
public string $postcode,
|
|
public string $city,
|
|
) {
|
|
}
|
|
}
|