* SPDX-License-Identifier: AGPL-3.0-or-later */ namespace KTXF\People\Entity\Property; use DateTimeInterface; use KTXF\Json\JsonSerializableObject; class AnniversaryObject extends JsonSerializableObject { public AnniversaryTypes|null $type = null; public DateTimeInterface|null $when = null; public string|null $location = null; }