opensupports/server/models/Comment.php

19 lines
332 B
PHP

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