diff options
Diffstat (limited to 'library/SSRS/Object/ReportParameter/ValidValue.php')
-rw-r--r-- | library/SSRS/Object/ReportParameter/ValidValue.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/library/SSRS/Object/ReportParameter/ValidValue.php b/library/SSRS/Object/ReportParameter/ValidValue.php new file mode 100644 index 0000000..adb11ca --- /dev/null +++ b/library/SSRS/Object/ReportParameter/ValidValue.php @@ -0,0 +1,16 @@ +<?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; + } + +}
\ No newline at end of file |