mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
15 lines
257 B
C#
15 lines
257 B
C#
using System;
|
|
using SDKCSharp.Response;
|
|
|
|
namespace SDKCSharp.Request
|
|
{
|
|
public class GetStoryRequest : BaseRequest<GetStoryResponse>
|
|
{
|
|
public override string GetMethod()
|
|
{
|
|
return "alipay.story.find";
|
|
}
|
|
}
|
|
|
|
}
|