generated from Nodarx/template
14 lines
220 B
PHP
14 lines
220 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Command\Argument\Search;
|
|
|
|
final readonly class Unseen implements Criteria
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return 'UNSEEN';
|
|
}
|
|
}
|