mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
15 lines
351 B
PHP
15 lines
351 B
PHP
<?php
|
|
|
|
namespace Gazelle\TaskScheduler;
|
|
|
|
class HistoryItem {
|
|
public function __construct(
|
|
public readonly string $launchTime,
|
|
public readonly string $status,
|
|
public readonly int $numErrors,
|
|
public readonly int $numItems,
|
|
public readonly int $duration,
|
|
public readonly array $events = [],
|
|
) {}
|
|
}
|