mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
16 lines
353 B
PHP
16 lines
353 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\AdditionalProcessing\DTO;
|
|
|
|
final readonly class PersistenceMetrics
|
|
{
|
|
public function __construct(
|
|
public int $databaseStatements = 0,
|
|
public float $databaseMilliseconds = 0.0,
|
|
public int $searchSyncRequests = 0,
|
|
public int $searchSyncExecutions = 0,
|
|
) {}
|
|
}
|