18 lines
274 B
C++
18 lines
274 B
C++
#pragma once
|
|
|
|
namespace Ingamba { namespace PaidServicesIntegration { namespace Wcf { namespace NativeClient { namespace Dto {
|
|
|
|
struct BuyStatusRequest
|
|
{
|
|
int UserId;
|
|
wchar_t * UserIp;
|
|
int RecipientUserId;
|
|
int StatusId;
|
|
int StatusTariffId;
|
|
int MoneyTypeId;
|
|
};
|
|
|
|
|
|
}}}}}
|
|
|