using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipaySocialBaseChatGnoticeModifyModel Data Structure.
///
[Serializable]
public class AlipaySocialBaseChatGnoticeModifyModel : AopObject
{
///
/// 群id
///
[XmlElement("group_id")]
public string GroupId { get; set; }
///
/// 群公告
///
[XmlElement("group_notice")]
public string GroupNotice { get; set; }
}
}