13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Sitemaps;
|
|
|
|
final readonly class SitemapImage
|
|
{
|
|
public function __construct(
|
|
public string $loc,
|
|
public ?string $title = null,
|
|
) {}
|
|
} |