28 lines
422 B
C
Raw Normal View History

2023-06-20 14:35:02 -04:00
#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;
};