22 lines
430 B
PHP
22 lines
430 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace KTXF\Chrono\Event;
|
|
|
|
use DateTime;
|
|
use DateTimeImmutable;
|
|
|
|
class EventMutationObject extends EventCommonObject {
|
|
|
|
public DateTime|DateTimeImmutable|null $mutationId = null;
|
|
public string|null $mutationTz = null;
|
|
public bool|null $mutationExclusion = null;
|
|
|
|
}
|