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

25 lines
449 B
C#

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