| 123456789101112131415161718192021 |
- <?php
- class Label {
- private $id = NULL;
- private $name = '';
- public function __construct($id, $name) {
- $this->id = $id;
- $this->name = $name;
- }
- public function getId() {
- return $this->id;
- }
- public function getName() {
- return $this->name;
- }
- }
- ?>
|