Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayMobileBeaconMessageSendResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

22 lines
456 B
C#

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