17 lines
290 B
PHP
17 lines
290 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Actions\UpdateTenantGeneral;
|
|
|
|
use App\Models\Tenant;
|
|
|
|
class UpdateTenantGeneralRequest
|
|
{
|
|
public function __construct(
|
|
public Tenant $tenant,
|
|
public string $name,
|
|
public string $slug,
|
|
public string $url,
|
|
) {
|
|
}
|
|
}
|