<?php
declare(strict_types=1);

namespace FreshCloud\Mail\MimeParser;

final readonly class MimePart
{
    public function __construct(
        public string $contentType,
        public string $body,
        public string $charset = 'utf-8',
        public string $transferEncoding = '7bit',
        public ?string $disposition = null,
        public ?string $filename = null,
        public array $parts = [],
        public array $headers = [],
    ) {
    }
}
