mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-06 18:57:45 +00:00
19 lines
313 B
C
19 lines
313 B
C
![]() |
#ifndef SAPPHIRE_DBCOMMON_H
|
||
|
#define SAPPHIRE_DBCOMMON_H
|
||
|
|
||
|
namespace Sapphire::Db
|
||
|
{
|
||
|
struct ConnectionInfo
|
||
|
{
|
||
|
std::string user;
|
||
|
std::string password;
|
||
|
std::string database;
|
||
|
std::string host;
|
||
|
uint16_t port;
|
||
|
uint8_t syncThreads;
|
||
|
uint8_t asyncThreads;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //SAPPHIRE_DBCOMMON_H
|