mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 02:48:34 +08:00
12 lines
306 B
Go
12 lines
306 B
Go
package netbase
|
|
|
|
import "pandax/pkg/tool"
|
|
|
|
type DeviceEventInfo struct {
|
|
DeviceId string `json:"deviceId"`
|
|
DeviceAuth *tool.DeviceAuth `json:"deviceAuth"`
|
|
Datas string `json:"datas"`
|
|
Type string `json:"type"`
|
|
RequestId string `json:"requestId"`
|
|
}
|