using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipaySocialBaseChatGmemberDeleteModel Data Structure. /// [Serializable] public class AlipaySocialBaseChatGmemberDeleteModel : AopObject { /// /// 群id /// [JsonProperty("group_id")] public string GroupId { get; set; } /// /// 剔除的群成员用户id列表 /// [JsonProperty("uids")] public List Uids { get; set; } } }