aboutsummaryrefslogtreecommitdiff
path: root/include/User.hpp
blob: 727bbcfd1f06852b8d0c9b09f101d29533d5780b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <opendht/crypto.h>
#include <string>

namespace odhtdb
{
    class User
    {
    public:
    private:
        dht::crypto::PublicKey publicKey;
        std::string name;
    };
}