<?php

namespace Autogedal\Retur\Ui\Component\Listing\Column\Rambursare;

use Magento\Framework\Data\OptionSourceInterface;

/**
 * Class Options for Listing Column Status
 */
class Options implements OptionSourceInterface
{
    /**
     * @var array
     */
    protected $options = [
        [
            "value" => "bani_pe_card",
            "label" => "Banii inapoi pe card"
        ],
        [
            "value" => "cont_iban",
            "label" => "Cont Iban"
        ]
    ];

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