mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-10 19:08:39 +00:00
27 lines
494 B
C
Executable File
27 lines
494 B
C
Executable File
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef COMS_DATABASE_CONNECTION_H
|
|
#define COMS_DATABASE_CONNECTION_H
|
|
|
|
#include "../stdlib/Types.h"
|
|
#include "DatabaseType.h"
|
|
|
|
struct DatabaseConnection {
|
|
byte con[32];
|
|
|
|
uint32 id; // Internal id to identify the connection
|
|
DatabaseType type;
|
|
uint16 port;
|
|
const char* host;
|
|
const char* name;
|
|
const char* user;
|
|
const char* pass;
|
|
};
|
|
|
|
#endif |