2017-11-29 21:58:30 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BusinessLogic\Calendar;
|
|
|
|
|
|
|
|
|
|
|
|
class AbstractEvent {
|
2018-01-02 13:05:10 -05:00
|
|
|
public $id;
|
|
|
|
|
2017-11-29 21:58:30 -05:00
|
|
|
public $startTime;
|
|
|
|
|
|
|
|
public $title;
|
|
|
|
|
|
|
|
public $categoryId;
|
|
|
|
|
|
|
|
public $categoryName;
|
|
|
|
|
|
|
|
public $backgroundColor;
|
|
|
|
|
|
|
|
public $foregroundColor;
|
|
|
|
|
|
|
|
public $displayBorder;
|
|
|
|
}
|