Your IP : 216.73.216.220


Current Path : /var/www/www.indacotrentino.com/www/app/code/Amasty/ImportCore/Import/Config/Relation/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/app/code/Amasty/ImportCore/Import/Config/Relation/Action.php

<?php
/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Import Core for Magento 2 (System)
 */

namespace Amasty\ImportCore\Import\Config\Relation;

use Amasty\ImportCore\Api\Config\Relation\RelationActionInterface;
use Magento\Framework\DataObject;

class Action extends DataObject implements RelationActionInterface
{
    public const ACTION_CLASS = 'action_class';

    public function getConfigClass()
    {
        return $this->getData(self::ACTION_CLASS);
    }

    public function setConfigClass($configClass)
    {
        $this->setData(self::ACTION_CLASS, $configClass);
    }
}