15 lines
304 B
PHP
15 lines
304 B
PHP
<?php
|
|
|
|
namespace App\Services\DTO;
|
|
|
|
final class MacroImportResult
|
|
{
|
|
public function __construct(
|
|
public readonly int $new,
|
|
public readonly int $updated,
|
|
public readonly int $disabled,
|
|
public readonly int $reEnabled,
|
|
public readonly array $warnings,
|
|
) {}
|
|
}
|