28bc360106
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXF\Chrono\Entity;
|
|
|
|
use DateTimeInterface;
|
|
use KTXF\Chrono\Entity\Property\AttachmentCollection;
|
|
use KTXF\Chrono\Entity\Property\JournalStatusTypes;
|
|
use KTXF\Chrono\Entity\Property\JournalVisibilityTypes;
|
|
use KTXF\Chrono\Entity\Property\TagCollection;
|
|
|
|
class JournalObject extends EntityPropertiesMutableAbstract {
|
|
public string $type = 'journal';
|
|
public ?string $urid = null;
|
|
public ?DateTimeInterface $created = null;
|
|
public ?DateTimeInterface $modified = null;
|
|
public ?string $label = null;
|
|
public ?string $description = null;
|
|
public TagCollection $tags;
|
|
public ?string $content = null;
|
|
public ?DateTimeInterface $startsOn = null;
|
|
public ?DateTimeInterface $endsOn = null;
|
|
public ?JournalStatusTypes $status = null;
|
|
public ?JournalVisibilityTypes $visibility = null;
|
|
public AttachmentCollection $attachments;
|
|
|
|
public function __construct() {
|
|
$this->tags = new TagCollection();
|
|
$this->attachments = new AttachmentCollection();
|
|
}
|
|
}
|