Files
adocWP/kb-markdown-importer/includes/GitLab/GitLabProject.php
Sven Steinert f4511b9213 MD Umbau
2026-05-13 11:57:52 +02:00

15 lines
271 B
PHP

<?php
declare(strict_types=1);
namespace KbMarkdownImporter\GitLab;
final class GitLabProject
{
public function __construct(
public readonly string $id,
public readonly string $name,
public readonly string $pathWithNamespace
) {
}
}