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

22 lines
410 B
C++

#pragma once
namespace Ingamba { namespace PaidServicesIntegration { namespace Wcf { namespace NativeClient { namespace Dto {
struct IGetUserInfoResponse : public virtual IReleaseableObject
{
virtual ~IGetUserInfoResponse() {}
ResultEnum Result ;
wchar_t * ErrorMessage;
int StatusId ;
bool StatusInUse ;
int StatusRemainingTime ;
wchar_t * Login;
wchar_t * Nickname;
wchar_t * Email;
};
}}}}}