完善SDK

This commit is contained in:
六如
2025-02-02 21:28:05 +08:00
parent e09c0106a0
commit aa8f044c70
6 changed files with 113 additions and 133 deletions

View File

@@ -0,0 +1,15 @@
using System;
using SDKCSharp.Common;
using SDKCSharp.Response;
namespace SDKCSharp.Request
{
public class GetProductRequest : BaseRequest<GetProductResponse>
{
public override string GetMethod()
{
return "product.get";
}
}
}