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

15 lines
252 B
PHP

<?php
namespace App\Entities\Customer\Wallet;
use App\Entities\Customer\CustomerEntity;
abstract class WalletEntity extends CustomerEntity
{
public function __construct(array|null $data = null)
{
parent::__construct($data);
}
}