// // Created by selim on 05.01.2022. // #include "User.h" User::User(std::string_view login, std::string_view token): login(login), token(token) { }