label.inc.php 312 B

123456789101112131415161718192021
  1. <?php
  2. class Label {
  3. private $id = NULL;
  4. private $name = '';
  5. public function __construct($id, $name) {
  6. $this->id = $id;
  7. $this->name = $name;
  8. }
  9. public function getId() {
  10. return $this->id;
  11. }
  12. public function getName() {
  13. return $this->name;
  14. }
  15. }
  16. ?>