opensupports/server/models/Department.php

12 lines
200 B
PHP
Raw Normal View History

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