using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsDataWeatherSyncModel Data Structure.
///
[Serializable]
public class AlipayInsDataWeatherSyncModel : AopObject
{
///
/// 天气信息描述信息
///
[XmlElement("content")]
public string Content { get; set; }
///
/// 外部业务幂等字段
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
}
}