1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.flightfeather.uav.socket.sender
|
| class WebSocketMessage {
|
| /**
| * 消息类型
| */
| var type: Int = 0
|
| /**
| * 消息内容
| */
| var content: Any? = null
|
| constructor()
|
| constructor(type: Int, content: Any?) {
| this.type = type
| this.content = content
| }
| }
|
|