feat: initial commit - HJHA game server full source
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
This commit is contained in:
36
ObjectModel/Config/HuaWei/VerifyProductResponse.cs
Normal file
36
ObjectModel/Config/HuaWei/VerifyProductResponse.cs
Normal file
@ -0,0 +1,36 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user