Commit 346f7e53 authored by Him188's avatar Him188

Make `MsgInfo.lFromUin` and `MsgInfo.uMsgTime` nullable

parent 8df1cfff
...@@ -28,8 +28,8 @@ internal data class RequestPushNotify( ...@@ -28,8 +28,8 @@ internal data class RequestPushNotify(
@Suppress("ArrayInDataClass") @Suppress("ArrayInDataClass")
@Serializable @Serializable
internal data class MsgInfo( internal data class MsgInfo(
@SerialId(0) val lFromUin: Long = 0L, @SerialId(0) val lFromUin: Long? = 0L,
@SerialId(1) val uMsgTime: Long = 0L, @SerialId(1) val uMsgTime: Long? = 0L,
@SerialId(2) val shMsgType: Short, @SerialId(2) val shMsgType: Short,
@SerialId(3) val shMsgSeq: Short, @SerialId(3) val shMsgSeq: Short,
@SerialId(4) val strMsg: String?, @SerialId(4) val strMsg: String?,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment