20 lines
249 B
PHP
20 lines
249 B
PHP
|
<?php
|
||
|
|
||
|
namespace BusinessLogic\Calendar;
|
||
|
|
||
|
|
||
|
class AbstractEvent {
|
||
|
public $startTime;
|
||
|
|
||
|
public $title;
|
||
|
|
||
|
public $categoryId;
|
||
|
|
||
|
public $categoryName;
|
||
|
|
||
|
public $backgroundColor;
|
||
|
|
||
|
public $foregroundColor;
|
||
|
|
||
|
public $displayBorder;
|
||
|
}
|