<?php
declare(strict_types=1);
namespace NetInventors\NetiNextEasyCoupon\Core\Content\Flow\Dispatching\Action;
use NetInventors\NetiNextEasyCoupon\Events\FlowEvent\CouponActivationEvent;
use Shopware\Core\Content\Flow\Dispatching\Action\FlowAction;
class ActivateCouponAction extends AbstractAction
{
protected static string $className = CouponActivationEvent::class;
}