Your IP : 3.144.31.163


Current Path : /home/sudancam/public_html3/games/wp-content/plugins/wp-rss-aggregator/src/Licensing/
Upload File :
Current File : /home/sudancam/public_html3/games/wp-content/plugins/wp-rss-aggregator/src/Licensing/Addon.php

<?php

namespace RebelCode\Wpra\Core\Licensing;

/**
 * A class for standard WP RSS Aggregator addon class.
 *
 * @since 4.14
 */
class Addon
{
    /**
     * @since 4.14
     *
     * @var string
     */
    public $key;

    /**
     * @since 4.14
     *
     * @var string
     */
    public $name;

    /**
     * @since 4.14
     *
     * @var string
     */
    public $version;

    /**
     * @since 4.14
     *
     * @var string
     */
    public $filePath;

    /**
     * @since 4.14
     *
     * @var string
     */
    public $storeUrl;

    /**
     * Constructor.
     *
     * @since 4.14
     *
     * @param string $key The addon key.
     * @param string $name The addon name.
     * @param string $version The addon plugin version.
     * @param string $filePath The addon plugin file ath.
     * @param string $storeUrl The addon licensing store URL.
     */
    public function __construct($key, $name, $version, $filePath, $storeUrl)
    {
        $this->key = $key;
        $this->name = $name;
        $this->version = $version;
        $this->filePath = $filePath;
        $this->storeUrl = $storeUrl;
    }
}