mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
16 lines
283 B
PHP
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;
|
|
}
|
|
}
|