package com.yidianling.im.event

/**
 * 群聊被踢出事件
 * 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
    }
}