JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "AppearanceSettingSaved.php"

Full Path: /home/markqprx/iniasli.pro/common-20260222054425/Admin/Appearance/Events/AppearanceSettingSaved.php
File size: 603 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Common\Admin\Appearance\Events;

class AppearanceSettingSaved
{
    /**
     * @var string
     */
    public $type;

    /**
     * @var string
     */
    public $key;

    /**
     * @var string
     */
    public $value;

    /**
     * @var string
     */
    public $previousValue;

    public function __construct(
        string $type,
        string $key,
        string $value,
        string $previousValue = null
    ) {
        //
        $this->type = $type;
        $this->key = $key;
        $this->value = $value;
        $this->previousValue = $previousValue;
    }
}