mirror of
https://github.com/Deathgarden-Rebirth/Deathgarden_Rebirth-Rewrite.git
synced 2026-09-09 03:35:14 -05:00
16 lines
286 B
PHP
16 lines
286 B
PHP
<?php
|
|
|
|
namespace App\Http\Responses\Api\Player\Purchase;
|
|
|
|
class PurchaseSetResponse
|
|
{
|
|
|
|
public function __construct(
|
|
public WalletEntry $cost,
|
|
public WalletEntry $newBalance,
|
|
public array $purchasedItems,
|
|
public array $rewardItems,
|
|
)
|
|
{
|
|
}
|
|
} |