| 123456789101112131415161718192021222324252627 |
- 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;
- }
- }
|