ILIAS  release_8 Revision v8.23
MetaDatum.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
21 
27 class MetaDatum
28 {
29  protected string $key;
30  protected string $value;
31 
32  public function __construct(string $key, string $value)
33  {
34  $this->key = $key;
35  $this->value = $value;
36  }
37 
38  public function getKey(): string
39  {
40  return $this->key;
41  }
42 
43  public function getValue(): string
44  {
45  return $this->value;
46  }
47 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...