mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 19:55:22 -05:00
14 lines
222 B
PHP
14 lines
222 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Matchmaking;
|
|
|
|
class QueueData
|
|
{
|
|
public function __construct(
|
|
public int $position,
|
|
public int $eta = -1,
|
|
public bool $stable = true,
|
|
)
|
|
{
|
|
}
|
|
} |