green-directory-php/src/Model/ExternalRef.php
Maximilian Ruta 48d33c3011 First commit
2019-06-25 14:38:56 +02:00

33 lines
486 B
PHP

<?php
namespace Netzbegruenung\GreenDirectory\Model;
class ExternalRef
{
/**
* @var string
* @see \Netzbegruenung\GreenDirectory\Model\ExternalRef\Type
*/
protected $type;
/**
* @var string
*/
protected $key;
/**
* @return string
*/
public function getType(): string
{
return $this->type;
}
/**
* @return string
*/
public function getKey(): string
{
return $this->key;
}
}