trove/packages/Lvl0/FediDiscover/src/Clients/FediversePost.php

15 lines
231 B
PHP
Raw Normal View History

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