fibable/lib/Post.php

13 lines
153 B
PHP
Raw Normal View History

2025-02-13 10:37:29 +01:00
<?php
final class Post
{
public string $title;
public string $content;
public int $date;
public string $id;
public array $tags;
}