<?php
/**
 * IRIX PHP Library
 * PHP Version 5.3+.
 *
 * @author Jonathan Beliën <jbe@geo6.be>
 * @copyright 2016 Jonathan Beliën
 * @note The IRIX (International Radiological Information Exchange) format is developed and maintained by IAEA (International Atomic Energy Agency) <https://www.iaea.org/>
 */

namespace IRIX\Miscellaneous;

/**
 * Used by :
 * * \IRIX\Measurements\DoseRate\Measurement()
 * * \IRIX\Measurements\Sample\Measurement().
 */
class Background
{
    public $value;
    public $uncertainty = null;
    public $timebase = null;
    public $method = null;

    public function __construct()
    {
        $this->value = new \IRIX\Value();
    }
}

