opensupports/server/models/Ticket.php

26 lines
495 B
PHP
Raw Normal View History

<?php
class Ticket extends DataStore {
2016-05-15 01:22:46 +02:00
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();
}
}