RTCRoomInfo.cs 255 B

12345678910111213
  1. using System;
  2. /// <summary>
  3. /// RTC模块 房间信息
  4. /// https://yapi.ghz-tech.com:8843/project/60/interface/api/1001
  5. /// </summary>
  6. [Serializable]
  7. public class RTCRoomInfo
  8. {
  9. public string roomId;
  10. public string token;
  11. public string host;
  12. }