| Current Path : /home/rtorresani/www/vendor/magento/module-wishlist/Model/Wishlist/Data/ |
| Current File : //home/rtorresani/www/vendor/magento/module-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;
}
}