dbms/app/Models/Device/DeviceModel.php
2025-05-07 15:57:41 +09:00

14 lines
197 B
PHP

<?php
namespace App\Models\Device;
use App\Models\CommonModel;
abstract class DeviceModel extends CommonModel
{
protected function __construct()
{
parent::__construct();
}
}