1 | <?php |
||
5 | class NewsletterList |
||
6 | { |
||
7 | /** @var string */ |
||
8 | public $name; |
||
9 | |||
10 | /** @var array */ |
||
11 | public $properties = []; |
||
12 | |||
13 | /** |
||
14 | * @param string $name |
||
15 | * @param array $properties |
||
16 | */ |
||
17 | public function __construct($name, array $properties) |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getId() |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getName() |
||
38 | } |
||
39 |