File: D:/HostingSpaces/SBogers10/shop.komma.nl/app/Vat/Models/VatScenario.php
<?php
namespace App\Vat\Models;
use App\Vat\VatScenarioEnum;
/**
* Class VatScenario
*
* @prop
* @package App\Vat\Models
*/
class VatScenario {
/*** @var int The vat rate percentage between 0 and 100 */
public $percentage;
/** @var bool Wheter or not the scenario represents a price including vat*/
public $incVat;
/**
* @var int A value corresponding to a value of the VatEnum class
* @see VatScenarioEnum
*/
public $enumValue;
/**
* @wheter or not this VatScenario should be selectable in selects
* @var bool $enabled
*/
public $enabled;
public function __construct()
{
$this->enabled = true;
$this->percentage = 0;
$this->incVat = false;
$this->enumValue = 0;
}
}