mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 09:59:46 +00:00
28 lines
542 B
PHP
28 lines
542 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OC\Calendar;
|
|
|
|
use OCP\Calendar\IAvailabilityResult;
|
|
|
|
class AvailabilityResult implements IAvailabilityResult {
|
|
public function __construct(
|
|
private readonly string $attendee,
|
|
private readonly bool $available,
|
|
) {
|
|
}
|
|
|
|
public function getAttendeeEmail(): string {
|
|
return $this->attendee;
|
|
}
|
|
|
|
public function isAvailable(): bool {
|
|
return $this->available;
|
|
}
|
|
}
|