2023-06-20 14:35:02 -04:00

28 lines
422 B
C++

#pragma once
#include "AuthFlow.h"
class customRefresh : public AuthFlow
{
Q_OBJECT
public:
explicit customRefresh(
AccountData *data,
QObject *parent = 0
);
};
class customLogin : public AuthFlow
{
Q_OBJECT
public:
explicit customLogin(
AccountData *data,
QString password,
QString url,
QObject *parent = 0
);
private:
QString m_password;
};