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

17 lines
327 B
PHP
Raw Normal View History

<?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,
) {}
}