using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialBaseChatGnameModifyModel Data Structure. /// [Serializable] public class AlipaySocialBaseChatGnameModifyModel : AopObject { /// /// 群id /// [XmlElement("group_id")] public string GroupId { get; set; } /// /// 群名称 /// [XmlElement("group_name")] public string GroupName { get; set; } } }