pp-planer/app/Services/DTO/LabelImportResult.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,
) {}
}