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