TrtcEventT.java 496 B

123456789101112131415161718192021222324252627
  1. package com.tencent.trtc.videocall;
  2. public class TrtcEventT {
  3. int code;
  4. String trtcType;
  5. public TrtcEventT(int code, String trtcType) {
  6. this.code = code;
  7. this.trtcType = trtcType;
  8. }
  9. public int getCode() {
  10. return code;
  11. }
  12. public void setCode(int code) {
  13. this.code = code;
  14. }
  15. public String getTrtcType() {
  16. return trtcType;
  17. }
  18. public void setTrtcType(String trtcType) {
  19. this.trtcType = trtcType;
  20. }
  21. }