File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/Vat/VatScenarioEnum.php
<?php declare(strict_types=1);
namespace App\Vat;
use App\Products\Product\Product;
use Komma\KMS\Base\Enum;
/**
* Class VatScenarioEnum
*
* Links numbers that can be stored for reference to scenarios.
*
* @see Product
* @see Product translations
* @see
* @package App\Vat
*/
class VatScenarioEnum extends Enum
{
const zero = 'zero';
const low_inc = 'low_inc';
const low_ex = 'low_ex';
const high_inc = 'high_inc';
const high_ex = 'high_ex';
}