14 lines
229 B
PHP
14 lines
229 B
PHP
|
<?php
|
||
|
|
||
|
class Topic extends DataStore {
|
||
|
const TABLE = 'topic';
|
||
|
|
||
|
public function getProps() {
|
||
|
return [
|
||
|
'name',
|
||
|
'icon',
|
||
|
'iconColor',
|
||
|
'ownArticleList'
|
||
|
];
|
||
|
}
|
||
|
}
|