opensupports/server/models/Article.php

14 lines
233 B
PHP
Raw Normal View History

<?php
class Article extends DataStore {
const TABLE = 'article';
public function getProps() {
return [
'title',
'content',
'lastEdited',
'position'
];
}
}