kopia lustrzana https://github.com/nextcloud/social
22 wiersze
409 B
PHP
22 wiersze
409 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Social\Model\ActivityPub\Actor;
|
|
|
|
use JsonSerializable;
|
|
|
|
/**
|
|
* Class Organization
|
|
*
|
|
* @package OCA\Social\Model\ActivityPub
|
|
*/
|
|
class Organization extends Person implements JsonSerializable {
|
|
public const TYPE = 'Organization';
|
|
}
|