* 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'; }