mirror of https://github.com/sualko/cloud_bbb
21 lines
367 B
PHP
21 lines
367 B
PHP
|
<?php
|
||
|
|
||
|
namespace OCA\BigBlueButton\Event;
|
||
|
|
||
|
use OCP\EventDispatcher\Event;
|
||
|
use OCA\BigBlueButton\Db\RoomShare;
|
||
|
|
||
|
abstract class RoomShareEvent extends Event {
|
||
|
|
||
|
/** @var RoomShare */
|
||
|
private $roomShare;
|
||
|
|
||
|
public function __construct(RoomShare $roomShare) {
|
||
|
$this->roomId = $roomShare;
|
||
|
}
|
||
|
|
||
|
public function getRoomShare(): RoomShare {
|
||
|
return $this->roomShare;
|
||
|
}
|
||
|
}
|