summaryrefslogtreecommitdiffstats
path: root/library/SSRS/Object/ReportParameter/ValidValue.php
blob: 9a9925a82ae0ce9aecfd6eeba4bdb01b0e98e72b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace SSRS\Object\ReportParameter;

class ValidValue {

    /**
     * capitals because of SSRS!
     */
    public $Value;
    public $Label;

    public function __construct($label, $value) {
        $this->Value = $value;
        $this->Label = $label;
    }

    public function __toString() {
        return $this->Value;
    }

}