dbmsv4/app/Forms/Customer/Wallet/WalletForm.php
2025-12-09 10:53:18 +09:00

14 lines
204 B
PHP

<?php
namespace App\Forms\Customer\Wallet;
use App\Forms\Customer\CustomerForm;
abstract class WalletForm extends CustomerForm
{
protected function __construct()
{
parent::__construct();
}
}