TeamRemoveEvent.kt 308 Bytes
Newer Older
konghaorui committed
1
package com.yidianling.im.event
konghaorui committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

/**
 * 群聊被踢出事件
 * Created by hgw on 2018/3/20.
 */
class TeamRemoveEvent{

    var code = 0 //1表示被踢出
    var teamId : String? = null //群聊id

    constructor(code: Int,teamId : String) {
        this.code = code
        this.teamId = teamId
    }
}