Files
icarus_dm/include/Models/Token.h
T
2022-01-08 21:09:40 -05:00

19 lines
178 B
C++

#ifndef TOKEN_H_
#define TOKEN_H_
#include<string>
namespace Models
{
struct Token
{
std::string accessToken;
std::string tokenType;
int expiration;
};
}
#endif