using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobileBeaconMessageSendResponse.
///
public class AlipayMobileBeaconMessageSendResponse : AopResponse
{
///
/// 操作返回码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 操作提示文案
///
[JsonProperty("msg")]
public string Msg { get; set; }
}
}