23 lines
441 B
PHP
23 lines
441 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use App\Entities\CommonEntity;
|
|
use App\Models\InquiryModel as Model;
|
|
|
|
class InquiryEntity extends CommonEntity
|
|
{
|
|
const PK = Model::PK;
|
|
const TITLE = Model::TITLE;
|
|
protected $attributes = [
|
|
'title' => '',
|
|
'email' => '',
|
|
'status' => '',
|
|
'content' => ''
|
|
];
|
|
public function __construct(array|null $data = null)
|
|
{
|
|
parent::__construct($data);
|
|
}
|
|
}
|