Files
Sun1602/ProgramCommon/IngambaAuth/Dto/BuyGameItemRequest.h
T
2022-10-26 12:25:11 +08:00

26 lines
468 B
C++

#pragma once
namespace Ingamba { namespace PaidServicesIntegration { namespace Wcf { namespace NativeClient { namespace Dto {
struct BuyGameItemRequest
{
int UserId;
wchar_t * UserIp;
int MoneyTypeId;
double Amount;
__int64 PaidServiceTransactionId;
wchar_t * GameServerName;
wchar_t * GameShopId;
wchar_t * LocationId;
int PlayerId;
wchar_t * CharacterName;
int GameItemId;
wchar_t * GameItemName;
int GameItemCount;
wchar_t * ExtraInfo;
} ;
}}}}}