15 lines
231 B
PHP
15 lines
231 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Lvl0\FediDiscover\Clients;
|
||
|
|
|
||
|
|
class FediversePost
|
||
|
|
{
|
||
|
|
public function __construct(
|
||
|
|
public string $cursorId,
|
||
|
|
public string $selfUrl,
|
||
|
|
public ?string $body
|
||
|
|
) {}
|
||
|
|
}
|