using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOpenOperationPlatformNoticeCreateModel Data Structure.
///
[Serializable]
public class AlipayOpenOperationPlatformNoticeCreateModel : AopObject
{
///
/// 站内信内容字段
///
[XmlElement("notice_content")]
public string NoticeContent { get; set; }
///
/// 站内信title字段
///
[XmlElement("notice_title")]
public string NoticeTitle { get; set; }
///
/// 商户pid
///
[XmlElement("pid")]
public string Pid { get; set; }
}
}