using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// GroupSetting Data Structure. /// [Serializable] public class GroupSetting : AopObject { /// /// 群名称 /// [JsonProperty("group_name")] public string GroupName { get; set; } /// /// 是否开放群成员邀请 /// [JsonProperty("is_openinv")] public bool IsOpeninv { get; set; } /// /// 群公告 /// [JsonProperty("public_notice")] public string PublicNotice { get; set; } } }