15 lines
294 B
PHP
15 lines
294 B
PHP
<?php
|
|
|
|
namespace Modules\Core\MigrateImport;
|
|
|
|
class ImportSpec
|
|
{
|
|
public function __construct(
|
|
public readonly string $source,
|
|
public readonly string $type,
|
|
public readonly ?string $filePath = null,
|
|
public readonly ?array $credentials = null,
|
|
) {
|
|
}
|
|
}
|