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