opensupports/server/models/Ticket.php

26 lines
495 B
PHP

<?php
class Ticket extends DataStore {
const TABLE = 'tickets';
public static function getProps() {
return array(
'ticketId',
'title',
'content',
'language',
'department',
'file',
'date',
'unread',
'closed',
'author',
'owner',
'ownComments'
);
}
protected function getDefaultProps() {
return array();
}
}