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

25 lines
527 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016 F7cloud GmbH and F7cloud contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\Mail\Db;
use OCP\AppFramework\Db\Entity;
/**
* @method null setUserId(string $userId)
* @method string getUserId()
* @method null setEmail(string $email)
* @method string getEmail()
* @method null setDisplayName(string $displayName)
* @method string getDisplayName()
*/
class CollectedAddress extends Entity {
protected $userId;
protected $email;
protected $displayName;
}