mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:03:27 +08:00
27 lines
495 B
C#
27 lines
495 B
C#
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;
|
|
|
|
}
|
|
}
|