13 lines
236 B
PHP
13 lines
236 B
PHP
<?php
|
|
|
|
namespace App\Services\DTO;
|
|
|
|
final class LabelImportResult
|
|
{
|
|
public function __construct(
|
|
public readonly int $newCount,
|
|
public readonly int $updatedCount,
|
|
public readonly int $totalInFile,
|
|
) {}
|
|
}
|