using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipaySocialBaseChatGnoticeModifyModel Data Structure. /// [Serializable] public class AlipaySocialBaseChatGnoticeModifyModel : AopObject { /// /// 群id /// [JsonProperty("group_id")] public string GroupId { get; set; } /// /// 群公告 /// [JsonProperty("group_notice")] public string GroupNotice { get; set; } } }