10 lines
153 B
C++
10 lines
153 B
C++
//
|
|
// Created by selim on 05.01.2022.
|
|
//
|
|
|
|
#include "User.h"
|
|
|
|
User::User(std::string_view login, std::string_view token): login(login), token(token) {
|
|
|
|
}
|