mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-16 18:04:34 -05:00
12 lines
213 B
PHP
12 lines
213 B
PHP
<?php
|
|
|
|
namespace Gazelle\TaskScheduler;
|
|
|
|
class TaskHistory {
|
|
public function __construct(
|
|
public readonly string $name,
|
|
public readonly int $count,
|
|
public array $items = [],
|
|
) {}
|
|
}
|