Files
SOP/sop-sdk/sdk-csharp/SDKCSharp/Request/GetStoryRequest.cs
2019-04-03 18:00:31 +08:00

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";
}
}
}