using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayInsDataWeatherSyncModel Data Structure.
///
[Serializable]
public class AlipayInsDataWeatherSyncModel : AopObject
{
///
/// 天气信息描述信息
///
[JsonProperty("content")]
public string Content { get; set; }
///
/// 外部业务幂等字段
///
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
}
}