package com.tencent.trtc.videocall; public class TrtcEventT { int code; String trtcType; public TrtcEventT(int code, String trtcType) { this.code = code; this.trtcType = trtcType; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getTrtcType() { return trtcType; } public void setTrtcType(String trtcType) { this.trtcType = trtcType; } }