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

/**
 * Description of ExecutionParameters
 *
 * @author andrew
 */
class SSRS_Object_ReportParameter extends SSRS_Object_Abstract {

    public function __construct($name, $value) {
        $this->name = $name;
        $this->value = $value;
    }

    public $name;
    public $value;

}