mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 19:25:10 -05:00
13 lines
197 B
PHP
13 lines
197 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Player;
|
|
|
|
class CheckUsernameResponse
|
|
{
|
|
public function __construct(
|
|
public string $UserId,
|
|
public string $PlayerName,
|
|
)
|
|
{
|
|
}
|
|
} |