summaryrefslogtreecommitdiff
path: root/src/settings_storage.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings_storage.hpp')
-rw-r--r--src/settings_storage.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/settings_storage.hpp b/src/settings_storage.hpp
new file mode 100644
index 0000000..d442d6f
--- /dev/null
+++ b/src/settings_storage.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include <string>
+
+namespace smtp
+{
+ struct SettingsStorage
+ {
+ std::string username;
+ std::string password;
+ std::string host;
+ std::string port;
+ };
+}