19 lines
349 B
PHP
19 lines
349 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Actions\UpdateTenantTax;
|
|
|
|
use App\Models\Tenant;
|
|
|
|
class UpdateTenantTaxRequest
|
|
{
|
|
public function __construct(
|
|
public Tenant $tenant,
|
|
public bool $taxLiable,
|
|
public int $vatRate,
|
|
public ?string $exemptionReason,
|
|
public ?string $exemptionNote,
|
|
)
|
|
{
|
|
}
|
|
}
|