Files
adocWP/kb-markdown-importer/includes/Import/ImportJob.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\Import;
final class ImportJob
{
public function __construct(
public readonly string $projectId,
public readonly string $branch,
public readonly bool $dryRun = false
) {
}
}