9 lines
225 B
PHP
9 lines
225 B
PHP
<?php
|
|
|
|
namespace App\Serp\Data;
|
|
|
|
final readonly class ProviderHealth
|
|
{
|
|
public function __construct(public string $providerKey, public int $balanceMicros, public int $statusCode, public \DateTimeInterface $checkedAt) {}
|
|
}
|