opensupports/server/models/Comment.php

19 lines
331 B
PHP
Raw Normal View History

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