dbmsv4/app/Entities/Customer/Wallet/PointEntity.php
2025-12-18 18:34:22 +09:00

16 lines
308 B
PHP

<?php
namespace App\Entities\Customer\Wallet;
use App\Models\Customer\Wallet\PointModel;
class PointEntity extends WalletEntity
{
const PK = PointModel::PK;
const TITLE = PointModel::TITLE;
public function __construct(array|null $data = null)
{
parent::__construct($data);
}
}