39 lines
751 B
PHP
39 lines
751 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Mail\Db;
|
|
|
|
use OCP\AppFramework\Db\Entity;
|
|
|
|
/**
|
|
* @method void setMailboxId(int $mailboxId)
|
|
* @method int getMailboxId()
|
|
* @method void setUid(int $uid)
|
|
* @method int getUid()
|
|
* @method void setKnownSince(int $knownSince)
|
|
* @method int getKnownSince()
|
|
*/
|
|
class MessageRetention extends Entity {
|
|
|
|
/** @var int */
|
|
protected $mailboxId;
|
|
|
|
/** @var int */
|
|
protected $uid;
|
|
|
|
/** @var int */
|
|
protected $knownSince;
|
|
|
|
public function __construct() {
|
|
$this->addType('mailboxId', 'integer');
|
|
$this->addType('uid', 'integer');
|
|
$this->addType('knownSince', 'integer');
|
|
}
|
|
}
|