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

25 lines
449 B
C#
Executable File

using System;
using SDKCSharp.Response;
namespace SDKCSharp.Request
{
public class CommonRequest : BaseRequest<CommonResponse>
{
public CommonRequest(string method): base(method, null)
{
}
public CommonRequest(string method, string version): base(method, version)
{
}
public override string GetMethod()
{
return "";
}
}
}