AutoCatGnome/models/User.h
2022-01-05 22:36:47 +03:00

24 lines
406 B
C++

//
// Created by selim on 05.01.2022.
//
#ifndef AUTOCAT_GNOME_USER_H
#define AUTOCAT_GNOME_USER_H
#include <string>
#include <optional>
class User {
public:
std::string login;
std::string token;
std::optional<std::string> googleIdToken;
std::optional<std::string> googleRefreshToken;
public:
User(std::string_view login, std::string_view token);
};
#endif //AUTOCAT_GNOME_USER_H