mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
23 lines
319 B
PHP
23 lines
319 B
PHP
|
<?php
|
||
|
|
||
|
namespace Model;
|
||
|
|
||
|
use SimpleValidator\Validator;
|
||
|
use SimpleValidator\Validators;
|
||
|
|
||
|
/**
|
||
|
* Timetable over-time
|
||
|
*
|
||
|
* @package model
|
||
|
* @author Frederic Guillot
|
||
|
*/
|
||
|
class TimetableExtra extends TimetableOff
|
||
|
{
|
||
|
/**
|
||
|
* SQL table name
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
const TABLE = 'timetable_extra';
|
||
|
}
|