Files
Sven Steinert f4511b9213 MD Umbau
2026-05-13 11:57:52 +02:00

14 lines
231 B
PHP

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