mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 07:02:14 +08:00
16 lines
281 B
C#
Executable File
16 lines
281 B
C#
Executable File
using System;
|
|
using SDKCSharp.Common;
|
|
using SDKCSharp.Response;
|
|
|
|
namespace SDKCSharp.Request
|
|
{
|
|
public class GetStoryRequest : BaseRequest<GetStoryResponse>
|
|
{
|
|
public override string GetMethod()
|
|
{
|
|
return "alipay.story.find";
|
|
}
|
|
}
|
|
|
|
}
|