mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-08 19:25:10 -05:00
21 lines
408 B
PHP
21 lines
408 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Player;
|
|
|
|
class ModifiersMeResponse
|
|
{
|
|
public string $TokenId;
|
|
|
|
public string $UserId;
|
|
|
|
public array $RoleIds = [
|
|
'755D4DFE-40DA1512-B01E3D8C-FF3C8D4D',
|
|
'C50FFFBF-46866131-82F45890-651797CE',
|
|
];
|
|
|
|
public function __construct(string $userId, string $token)
|
|
{
|
|
$this->TokenId = $token;
|
|
$this->UserId = $userId;
|
|
}
|
|
} |