1
0
mirror of https://github.com/beestat/app.git synced 2025-05-23 18:04:14 -04:00
beestat/api/floor_plan.php
2022-08-04 21:32:10 -04:00

21 lines
240 B
PHP

<?php
/**
* Floor plan.
*
* @author Jon Ziebell
*/
class floor_plan extends cora\crud {
public static $exposed = [
'private' => [
'read_id',
'update',
'create',
'delete'
],
'public' => []
];
}