#ifndef SERVERVENCRYPTAUTHTYPERESPONSEMESSAGE_H
#define SERVERVENCRYPTAUTHTYPERESPONSEMESSAGE_H
#include "servermessagebase.h"
#include "clientglobals.h"

#include <QList>

class ServerVencryptAuthTypeResponseMessage : public ServerMessageBase
{
public:
    ServerVencryptAuthTypeResponseMessage();
    bool loadMessage( QIODevice *device );

    bool isVencryptVersionAccepted() const;
    QList<ClientGlobals::SubAuthType> authTypes() const;

private:
    bool m_vencryptVersionAccepted;
    QList<ClientGlobals::SubAuthType> m_authTypes;
};

#endif // SERVERVENCRYPTAUTHTYPERESPONSEMESSAGE_H

