mirror of
https://code.castopod.org/adaures/castopod
synced 2025-08-23 21:09:27 +00:00
15 lines
234 B
PHP
15 lines
234 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Entities;
|
||
|
|
|
||
|
|
use CodeIgniter\Entity;
|
||
|
|
|
||
|
|
class Category extends Entity
|
||
|
|
{
|
||
|
|
protected $casts = [
|
||
|
|
'parent_id' => 'integer',
|
||
|
|
'apple_category' => 'string',
|
||
|
|
'google_category' => 'string',
|
||
|
|
];
|
||
|
|
}
|