diff options
Diffstat (limited to 'lib/public/Files/Template/Field.php')
-rw-r--r-- | lib/public/Files/Template/Field.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/public/Files/Template/Field.php b/lib/public/Files/Template/Field.php new file mode 100644 index 00000000000..143ea95c0ef --- /dev/null +++ b/lib/public/Files/Template/Field.php @@ -0,0 +1,18 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OCA\Richdocuments\Template; + +class Field { + private FieldType $type; + private int $index; + private string $content; + + public function __construct(FieldType $type) { + $this->type = $type; + } +} |