19 lines
375 B
PHP
19 lines
375 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\TenantConfiguration;
|
|
|
|
final readonly class ExchangePowerShellProcessCommand
|
|
{
|
|
/**
|
|
* @param list<string> $arguments
|
|
*/
|
|
public function __construct(
|
|
public array $arguments,
|
|
public int $timeoutSeconds,
|
|
public int $stdoutMaxBytes,
|
|
public int $stderrMaxBytes,
|
|
) {}
|
|
}
|