16 lines
345 B
C#
16 lines
345 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// ZhimaDataFeedbackurlQueryResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class ZhimaDataFeedbackurlQueryResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 反馈模板地址
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("feedback_url")]
|
||
|
|
public string FeedbackUrl { get; set; }
|
||
|
|
}
|
||
|
|
}
|