mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 19:55:22 -05:00
23 lines
385 B
PHP
23 lines
385 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Player\Inbox;
|
|
|
|
class Message
|
|
{
|
|
// Seems to be what they use as a ID Parameter
|
|
public int $received;
|
|
|
|
public string $flag;
|
|
|
|
public int $receivedTimestamp;
|
|
|
|
public MessagePayload $message;
|
|
|
|
public ?string $tag = null;
|
|
|
|
public ?int $expireAt = null;
|
|
|
|
public ?string $origin = null;
|
|
|
|
public string $recipientId;
|
|
} |