Files
SOP/sop-sdk/sdk-csharp/SDKCSharp/Request/GetStoryRequest.cs
2019-05-28 11:08:50 +08:00

16 lines
281 B
C#

using System;
using SDKCSharp.Common;
using SDKCSharp.Response;
namespace SDKCSharp.Request
{
public class GetStoryRequest : BaseRequest<GetStoryResponse>
{
public override string GetMethod()
{
return "alipay.story.find";
}
}
}