<?php

declare(strict_types=1);

namespace App\Message;

use App\Entity\Campaign\Keyword\Check;

final class KeywordChecked
{
    /**
     * @var Check
     */
    private $check;

    /**
     * KeywordChecked constructor.
     *
     * @param Check $check
     */
    public function __construct(Check $check)
    {
        $this->check = $check;
    }

    /**
     * @return Check
     */
    public function getCheck(): Check
    {
        return $this->check;
    }
}
