%PDF- %PDF-
| Direktori : /www/varak.net/nextcloud.varak.net/apps_old/apps/passwords/lib/Db/ |
| Current File : /www/varak.net/nextcloud.varak.net/apps_old/apps/passwords/lib/Db/FolderRevision.php |
<?php
/**
* This file is part of the Passwords App
* created by Marius David Wieschollek
* and licensed under the AGPL.
*/
namespace OCA\Passwords\Db;
/**
* Class FolderRevision
*
* @method string getParent()
* @method void setParent(string $parent)
*
* @package OCA\Passwords\Db
*/
class FolderRevision extends AbstractRevision {
/**
* @var string
*/
protected string $parent;
/**
* Folder constructor.
*/
public function __construct() {
$this->addType('label', 'string');
$this->addType('parent', 'string');
parent::__construct();
}
}