using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipaySocialBaseChatGnameModifyModel Data Structure. /// [Serializable] public class AlipaySocialBaseChatGnameModifyModel : AopObject { /// /// 群id /// [JsonProperty("group_id")] public string GroupId { get; set; } /// /// 群名称 /// [JsonProperty("group_name")] public string GroupName { get; set; } } }