15 lines
269 B
PHP
15 lines
269 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace KbAntoraImporter\Import;
|
|
|
|
final class ImportJob
|
|
{
|
|
public function __construct(
|
|
public readonly string $projectId,
|
|
public readonly string $branch,
|
|
public readonly bool $dryRun = false
|
|
) {
|
|
}
|
|
}
|