Viewing File: /home/maglabs/it/app/code/Magento/Wishlist/Model/Wishlist/Data/SelectedOption.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Wishlist\Model\Wishlist\Data;

/**
 * DTO represents selected option
 */
class SelectedOption
{
    /**
     * @var string
     */
    private $id;

    /**
     * @param string $id
     */
    public function __construct(string $id)
    {
        $this->id = $id;
    }

    /**
     * Get selected option id
     *
     * @return string
     */
    public function getId(): string
    {
        return $this->id;
    }
}
Back to Directory File Manager