Initial Version
This commit is contained in:
22
shared/lib/Files/Node/INodeCollectionBase.php
Normal file
22
shared/lib/Files/Node/INodeCollectionBase.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXF\Files\Node;
|
||||
|
||||
/**
|
||||
* Interface for collection (folder) nodes
|
||||
*
|
||||
* Collections are containers that can hold other nodes (both collections and entities).
|
||||
* They inherit common properties from INodeBase and add collection-specific properties.
|
||||
*/
|
||||
interface INodeCollectionBase extends INodeBase {
|
||||
|
||||
public const JSON_TYPE = 'files.collection';
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user