mirror of https://github.com/sualko/cloud_bbb
20 lines
379 B
PHP
20 lines
379 B
PHP
<?php
|
|
|
|
namespace OCA\BigBlueButton\Event;
|
|
|
|
use OCA\BigBlueButton\Db\Room;
|
|
|
|
class MeetingEndedEvent extends RoomEvent {
|
|
private $recordingMarks = false;
|
|
|
|
public function __construct(Room $room, bool $recordingMarks) {
|
|
parent::__construct($room);
|
|
|
|
$this->recordingMarks = $recordingMarks;
|
|
}
|
|
|
|
public function hasRecordingMarks(): bool {
|
|
return $this->recordingMarks;
|
|
}
|
|
}
|