Files
hjha-server/ObjectModel/Config/HuaWei/VerifyRequest.cs
xiaoou e9616125ce 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
2026-07-07 12:02:15 +08:00

18 lines
573 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace ObjectModel.Config.HuaWei
{
[Serializable]
public class VerifyRequest
{
/// <summary>
/// 待下发商品ID。商品ID来源于您在AppGallery Connect中配置商品信息时设置的商品ID。
/// </summary>
public string productId { get; set; }
/// <summary>
/// 待下发商品的购买Token发起购买和查询待消费商品信息时均会返回purchaseToken参数。
/// </summary>
public string purchaseToken { get; set; }
}
}