fix(tenpayv2): fix typo

This commit is contained in:
Fu Diwei
2022-01-25 15:13:46 +08:00
parent 3b4778d786
commit 7c8475efd8
3 changed files with 15 additions and 1 deletions

View File

@@ -60,5 +60,12 @@
[Newtonsoft.Json.JsonProperty("code_url")]
[System.Text.Json.Serialization.JsonPropertyName("code_url")]
public string? CodeUrl { get; set; }
/// <summary>
/// 获取或设置支付跳转链接。
/// </summary>
[Newtonsoft.Json.JsonProperty("mweb_url")]
[System.Text.Json.Serialization.JsonPropertyName("mweb_url")]
public string? MobileWebUrl { get; set; }
}
}

View File

@@ -60,5 +60,12 @@
[Newtonsoft.Json.JsonProperty("code_url")]
[System.Text.Json.Serialization.JsonPropertyName("code_url")]
public string? CodeUrl { get; set; }
/// <summary>
/// 获取或设置支付跳转链接。
/// </summary>
[Newtonsoft.Json.JsonProperty("mweb_url")]
[System.Text.Json.Serialization.JsonPropertyName("mweb_url")]
public string? MobileWebUrl { get; set; }
}
}