nextcloud/lib/public/Files/Template/Field.php
Elizabeth Danzberger 05ed5aa230
fix: Emit new BeforeGetTemplates event
Signed-off-by: Elizabeth Danzberger <lizzy7128@tutanota.de>
2024-07-25 11:11:38 +02:00

16 lines
283 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\Files\Template;
class Field {
public FieldType $type;
public function __construct(FieldType $type) {
$this->type = $type;
}
}