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

16 lines
310 B
C++

#pragma once
namespace Ingamba { namespace PaidServicesIntegration { namespace Wcf { namespace NativeClient { namespace Dto {
struct IAuthenticateUserResponse : public virtual IReleaseableObject
{
virtual ~IAuthenticateUserResponse() {}
ResultEnum Result;
wchar_t * ErrorMessage;
int UserId;
};
}}}}}