social/lib/Model/ActivityPub/Actor/Service.php

22 wiersze
394 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Social\Model\ActivityPub\Actor;
use JsonSerializable;
/**
* Class Service
*
* @package OCA\Social\Model\ActivityPub
*/
class Service extends Person implements JsonSerializable {
public const TYPE = 'Service';
}