generated from Nodarx/template
12 lines
216 B
PHP
12 lines
216 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Gricob\IMAP\Protocol\Response\Line\Data\Fetch;
|
|
|
|
final readonly class BodySection
|
|
{
|
|
public function __construct(public string $section, public string $text)
|
|
{
|
|
}
|
|
} |