2020-09-18 14:46:11 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace OCA\BigBlueButton\Event;
|
|
|
|
|
|
|
|
use OCA\BigBlueButton\Db\RoomShare;
|
2020-09-23 12:33:09 +02:00
|
|
|
use OCP\EventDispatcher\Event;
|
2020-09-18 14:46:11 +02:00
|
|
|
|
|
|
|
abstract class RoomShareEvent extends Event {
|
|
|
|
/** @var RoomShare */
|
|
|
|
private $roomShare;
|
|
|
|
|
|
|
|
public function __construct(RoomShare $roomShare) {
|
2020-09-18 17:13:46 +02:00
|
|
|
$this->roomShare = $roomShare;
|
2020-09-18 14:46:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getRoomShare(): RoomShare {
|
|
|
|
return $this->roomShare;
|
|
|
|
}
|
|
|
|
}
|