mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-11 01:07:39 +08:00
26 lines
492 B
PHP
26 lines
492 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of MailSo.
|
|
*
|
|
* (c) 2014 Usenko Timur
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace MailSo\Imap\Enumerations;
|
|
|
|
/**
|
|
* @category MailSo
|
|
* @package Imap
|
|
* @subpackage Enumerations
|
|
*/
|
|
class FolderResponseStatus
|
|
{
|
|
const MESSAGES = 'MESSAGES';
|
|
const RECENT = 'RECENT';
|
|
const UNSEEN = 'UNSEEN';
|
|
const UIDNEXT = 'UIDNEXT';
|
|
const UIDVALIDITY = 'UIDVALIDITY';
|
|
}
|