mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 02:29:40 +08:00
14 lines
479 B
C#
14 lines
479 B
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/midas/sandbox/present 接口的请求。</para>
|
|
/// </summary>
|
|
public class CgibinMidasSandboxPresentRequest : CgibinMidasPresentRequest, IInferable<CgibinMidasSandboxPresentRequest, CgibinMidasSandboxPresentResponse>
|
|
{
|
|
protected internal override string GetRequestPath()
|
|
{
|
|
return "/cgi-bin/midas/sandbox/present";
|
|
}
|
|
}
|
|
}
|