blessing-skin-server/app/Events/TextureDeleting.php
2019-05-07 15:16:53 +08:00

14 lines
201 B
PHP

<?php
namespace App\Events;
class TextureDeleting extends Event
{
public $texture;
public function __construct(\App\Models\Texture $texture)
{
$this->texture = $texture;
}
}