16 lines
327 B
PHP
16 lines
327 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Lvl0\FediDiscover\ValueObjects;
|
|
|
|
class FediversePost
|
|
{
|
|
public function __construct(
|
|
public string $cursorId,
|
|
public ?string $selfUrl,
|
|
public ?string $body = null,
|
|
public ?string $title = null,
|
|
public ?string $publishedAt = null,
|
|
) {}
|
|
}
|