using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobileBeaconDeviceDeleteResponse.
///
public class AlipayMobileBeaconDeviceDeleteResponse : AopResponse
{
///
/// 操作返回码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 请求处理结果
///
[JsonProperty("msg")]
public string Msg { get; set; }
}
}