mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-15 06:09:58 +08:00
27 lines
405 B
PHP
27 lines
405 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class GetAvatarPreview extends Event
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $texture;
|
|
|
|
public $size;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(\App\Models\Texture $texture, $size)
|
|
{
|
|
$this->texture = $texture;
|
|
$this->size = $size;
|
|
}
|
|
|
|
}
|