summaryrefslogtreecommitdiff
path: root/src/settings_storage.hpp
blob: d442d6ff1f408f055ee259407c4e7e64d50ba95f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <string>

namespace smtp
{
    struct SettingsStorage
    {
        std::string username;
        std::string password;
        std::string host;
        std::string port;
    };
}