<?php

namespace Autogedal\FbReviews\Ui\Component\Listing\Column\Status;

use Magento\Framework\Data\OptionSourceInterface;

/**
 * Class Options for Listing Column Status
 */
class Options implements OptionSourceInterface
{
    /**
     * @var array
     */
    protected $options = [
        0 => [
            "value" => 0,
            "label" => "Disabled"
        ],
        1 => [
            "value" => 1,
            "label" => "Enabled"
        ]
    ];

    /**
     * Get options
     *
     * @return array
     */
    public function toOptionArray()
    {
        return $this->options;
    }
}
