dbms/app/Entities/FormOptionEntity.php
2025-06-18 16:50:27 +09:00

16 lines
263 B
PHP

<?php
namespace App\Entities;
class FormOptionEntity extends CommonEntity
{
public function getPK(): string
{
return $this->attributes['uid'];
}
public function getTitle(): string
{
return $this->attributes['title'];
}
}