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

15 lines
220 B
PHP

<?php
namespace App\Models\Customer\Wallet;
use App\Models\Customer\CustomerModel;
abstract class WalletModel extends CustomerModel
{
protected function __construct()
{
parent::__construct();
}
}