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

class SSRS_Object_ReportParameter_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;
    }

}