opensupports/server/models/Topic.php

14 lines
229 B
PHP
Raw Normal View History

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