- using System;
- /// <summary>
- /// 自己测试的
- /// </summary>
- [Serializable]
- public class RTCUserInfo
- {
- public int UserID;
- public string UserName;
- public string Level; // 级别
- public int Head; // 头像
- public bool Audio; // 是否开启音频
- public bool Video; // 是否开启视频
- public string State; //0离线 1在线 2忙碌
- }
|