17 lines
365 B
PHP
17 lines
365 B
PHP
<?php
|
|
|
|
namespace App\Domains\Admin\Actions\UpdateAvailablePaymentMethod;
|
|
|
|
use App\Models\AvailablePaymentMethod;
|
|
|
|
class UpdateAvailablePaymentMethodRequest
|
|
{
|
|
public function __construct(
|
|
public AvailablePaymentMethod $availablePaymentMethod,
|
|
public string $name,
|
|
public ?string $description,
|
|
public bool $active,
|
|
) {
|
|
}
|
|
}
|