Files
SOP/sop-sdk/sdk-csharp/SDKCSharp/Request/GetStoryRequest.cs
六如 403e8111f4 5.0
2024-12-22 23:09:46 +08:00

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