opensupports/server/models/Department.php

12 lines
207 B
PHP
Raw Normal View History

<?php
class Department extends DataStore {
const TABLE = 'department';
public static function getProps() {
return [
'name',
'sharedTicketList'
];
}
}