18 lines
333 B
PHP
18 lines
333 B
PHP
|
<?php
|
||
|
|
||
|
final class Link
|
||
|
{
|
||
|
public string $id;
|
||
|
public string $label;
|
||
|
public string $url;
|
||
|
public bool $self;
|
||
|
|
||
|
public function __construct(string $id, string $label, string $url, bool $self)
|
||
|
{
|
||
|
$this->id = $id;
|
||
|
$this->label = $label;
|
||
|
$this->url = $url;
|
||
|
$this->self = $self;
|
||
|
}
|
||
|
}
|