webRtcMsgModel.h 996 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // webRtcMsgModel.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/9/2.
  6. //
  7. #import "SuperModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface webRtcMsgSignallingModel : SuperModel //信令服务对象 (推流)
  10. @property (nonatomic, copy) NSString *port;//端口
  11. @property (nonatomic, copy) NSString *domainName;//地址
  12. @end
  13. @interface webRtcMsgTurnModel : SuperModel //turn服务对象 (ice)
  14. @property (nonatomic, copy) NSString *port;//端口
  15. @property (nonatomic, copy) NSString *domainName;//地址
  16. @end
  17. @interface webRtcMsgDataModel : SuperModel
  18. @property (nonatomic, copy) NSString *sn;//SN
  19. @property (nonatomic, copy) NSString *uniqueIdentifier;//唯一标识符
  20. @property (nonatomic, copy) NSString *cpuSerialNum;//CPU 序列号
  21. @property(nonatomic, strong) webRtcMsgSignallingModel*signalling;
  22. @property(nonatomic, strong) webRtcMsgTurnModel*turn;
  23. @end
  24. @interface webRtcMsgModel : SuperModel
  25. @property(nonatomic, strong) webRtcMsgDataModel*data;
  26. @end
  27. NS_ASSUME_NONNULL_END