using System; using System.Collections.Generic; using System.Text; namespace GxPress.Request.GroupChatUser { /// /// 添加 /// public class GroupChatUserInRequest { /// /// 群ID /// public int GroupChatId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 是否免打扰 /// public bool IsDisturb { get; set; } /// /// 是否置顶 /// public bool IsTop { get; set; } /// /// 环信ID /// public string GroupChartImId { get; set; } } }