6 major server modules (PdkFriendServer/GlobalSever/ServerCore/GameModule/GameNetModule) + game logic (GameFix/GameDAL/ServerData) + network layer (NetWorkMessage) + data layer (ObjectModel) + utilities (MrWu/Core/Config/CloudAPI/dll) + adapters (zyxAdapter/base) .NET 8.0 C# solution, 16 projects, 958 source files
37 lines
820 B
C#
37 lines
820 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ObjectModel.Config.HuaWei
|
|
{
|
|
public class VerifyProductResponse
|
|
{
|
|
/// <summary>
|
|
/// 0成功 其他失败
|
|
/// </summary>
|
|
public string responseCode;
|
|
|
|
/// <summary>
|
|
/// 商品的JSON数据
|
|
/// </summary>
|
|
public string purchaseTokenData;
|
|
|
|
/// <summary>
|
|
/// 加密后的字符串
|
|
/// </summary>
|
|
public string dataSignature;
|
|
|
|
/// <summary>
|
|
/// 加密方式
|
|
/// </summary>
|
|
public string signatureAlgorithm;
|
|
|
|
/// <summary>
|
|
/// 错误信息
|
|
/// </summary>
|
|
public string responseMessage;
|
|
}
|
|
}
|