17 lines
311 B
PHP
17 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Actions\UpdateTenantPayment;
|
|
|
|
use App\Models\Tenant;
|
|
|
|
class UpdateTenantPaymentRequest
|
|
{
|
|
public function __construct(
|
|
public Tenant $tenant,
|
|
public string $accountIban,
|
|
public string $accountBic,
|
|
public string $accountName,
|
|
) {
|
|
}
|
|
}
|