<?php
declare(strict_types=1);

namespace FreshCloud\Mail\Sieve;

final readonly class SieveScript
{
    public function __construct(
        public string $name,
        public string $raw,
        /** @var string[] */
        public array $rules = []
    ) {
    }
}