opensupports/server/models/Comment.php

19 lines
332 B
PHP
Raw Normal View History

<?php
class Comment extends DataStore {
2016-05-15 01:22:46 +02:00
const TABLE = 'comments';
public static function getProps() {
return array(
'content',
'file',
'ticket',
'author',
'date'
);
}
protected function getDefaultProps() {
return array();
}
}