mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 08:34:02 +01:00
14 lines
174 B
PHP
14 lines
174 B
PHP
<?php
|
|
|
|
namespace app\modules\server\events;
|
|
|
|
use app\models\Device;
|
|
|
|
class DeviceAuthEvent extends ConnectionEvent
|
|
{
|
|
/**
|
|
* @var Device
|
|
*/
|
|
public $device;
|
|
}
|