1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-06 10:47:45 +00:00
sapphire/src/common/Database/DbCommon.h

19 lines
260 B
C
Raw Normal View History

#pragma once
2019-01-07 23:16:01 +11:00
2019-11-23 09:22:42 +00:00
#include <string>
2019-01-07 23:16:01 +11:00
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;
};
}