HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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;
    }
}