using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YuanXuan.IM.Common.Configs { public class ImConfig { public int SDKAppID { get; set; } public string Key { get; set; } public int ExpiredTime { get; set; } /// /// 头像默认地址 /// public string DefaultAvater { get; set; } /// /// 管理员用户 /// public string AdminUserId { get; set; } /// /// api头部地址 /// public string ApiHeadUrl { get; set; } /// /// 视频通话状态 /// public bool VideoCall { get; set; } /// /// 语音通话状态 /// public bool VoiceCall { get; set; } } public class ImConfigResult { public int SDKAppID { get; set; } /// /// 视频通话状态 /// public bool VideoCall { get; set; } /// /// 语音通话状态 /// public bool VoiceCall { get; set; } } }