RTCRoomInfo.cs 184 B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. [Serializable]
  4. public class RTCRoomInfo
  5. {
  6. public int RoomID;
  7. public string RoomName;
  8. public List<RTCUserInfo> UserList ;
  9. }