mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
16 lines
279 B
C#
16 lines
279 B
C#
using System;
|
|
using SDKCSharp.Common;
|
|
using SDKCSharp.Response;
|
|
|
|
namespace SDKCSharp.Request
|
|
{
|
|
public class GetProductRequest : BaseRequest<GetProductResponse>
|
|
{
|
|
public override string GetMethod()
|
|
{
|
|
return "product.get";
|
|
}
|
|
}
|
|
|
|
}
|