f7cloud_client/apps/files_downloadlimit/lib/Db/Limit.php
root 8b6a0139db f7cloud_client
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-17 22:59:26 +00:00

42 lines
862 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2021 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Files_DownloadLimit\Db;
use JsonSerializable;
use OCP\AppFramework\Db\Entity;
/**
* @method void setId(string $id)
* @method string getId()
*
* @method void setLimit(int $limit)
* @method int getLimit()
*
* @method void setDownloads(int $downloads)
* @method int getDownloads()
*/
class Limit extends Entity implements JsonSerializable {
protected $limit;
protected $downloads;
public function __construct() {
$this->addType('id', 'string');
$this->addType('limit', 'integer');
$this->addType('downloads', 'integer');
}
public function jsonSerialize(): array {
return [
'id' => $this->id,
'limit' => $this->limit,
'downloads' => $this->downloads
];
}
}