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

24 lines
349 B
PHP

<?php
namespace Netzbegruenung\GreenDirectory\Model;
class Email
{
/**
* @var string
*/
protected $address;
public function __construct(string $address)
{
$this->address = $address;
}
/**
* @return string
*/
public function getAddress(): string
{
return $this->address;
}
}