【优化】完善微信公众号及移动端WAP浏览器下,H5端的多种分享功能的接口实现。

This commit is contained in:
jianweie code
2023-05-11 00:18:40 +08:00
parent c7bde936b0
commit b175c0780a
4 changed files with 48 additions and 5 deletions

View File

@@ -10832,6 +10832,21 @@
提现方式
</summary>
</member>
<member name="T:CoreCms.Net.Model.FromBody.FMGetWeChatConfig">
<summary>
</summary>
</member>
<member name="P:CoreCms.Net.Model.FromBody.FMGetWeChatConfig.url">
<summary>
请求网址
</summary>
</member>
<member name="P:CoreCms.Net.Model.FromBody.FMGetWeChatConfig.token">
<summary>
请求授权
</summary>
</member>
<member name="T:CoreCms.Net.Model.FromBody.FMWxPost">
<summary>
小程序提交数据标准接收实体

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoreCms.Net.Model.FromBody
{
/// <summary>
///
/// </summary>
public class FMGetWeChatConfig
{
/// <summary>
/// 请求网址
/// </summary>
public string url { get; set; }
/// <summary>
/// 请求授权
/// </summary>
public string token { get; set; } = string.Empty;
}
}