opensupports/server/models/Comment.php

14 lines
235 B
PHP

<?php
class Comment extends DataStore {
const TABLE = 'comment';
public static function getProps() {
return array(
'content',
'file',
'author',
'date'
);
}
}