mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
25 lines
449 B
C#
Executable File
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 "";
|
|
}
|
|
|
|
}
|
|
}
|