26 lines
406 B
PHP
Raw Normal View History

2017-11-29 21:58:30 -05:00
<?php
namespace BusinessLogic\Calendar;
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;
/* @var $auditTrail AuditTrail[] */
public $auditTrail = array();
2017-11-29 21:58:30 -05:00
}