2017-11-29 21:58:30 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BusinessLogic\Calendar;
|
|
|
|
|
|
|
|
|
2018-01-24 13:01:23 -05:00
|
|
|
use BusinessLogic\Tickets\AuditTrail;
|
|
|
|
|
2017-11-29 21:58:30 -05:00
|
|
|
class CalendarEvent extends AbstractEvent {
|
|
|
|
public $type = 'CALENDAR';
|
|
|
|
|
|
|
|
public $endTime;
|
|
|
|
|
|
|
|
/* @var $allDay bool */
|
|
|
|
public $allDay;
|
|
|
|
|
|
|
|
public $location;
|
|
|
|
|
|
|
|
public $comments;
|
|
|
|
|
|
|
|
public $reminderValue;
|
|
|
|
|
|
|
|
public $reminderUnits;
|
2018-01-24 13:01:23 -05:00
|
|
|
|
|
|
|
/* @var $auditTrail AuditTrail[] */
|
|
|
|
public $auditTrail = array();
|
2017-11-29 21:58:30 -05:00
|
|
|
}
|