2017-11-29 21:58:30 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BusinessLogic\Calendar;
|
|
|
|
|
|
|
|
|
|
|
|
class CalendarEvent extends AbstractEvent {
|
|
|
|
public $type = 'CALENDAR';
|
|
|
|
|
|
|
|
public $endTime;
|
|
|
|
|
|
|
|
/* @var $allDay bool */
|
|
|
|
public $allDay;
|
|
|
|
|
|
|
|
public $location;
|
|
|
|
|
|
|
|
public $comments;
|
|
|
|
|
|
|
|
public $reminderValue;
|
|
|
|
|
|
|
|
public $reminderUnits;
|
2018-01-19 22:17:15 -05:00
|
|
|
|
|
|
|
public $recurringRule;
|
2017-11-29 21:58:30 -05:00
|
|
|
}
|