opensupports/server/models/Comment.php

15 lines
257 B
PHP

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