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

#include "types.hpp"
#include <odhtdb/Group.hpp>
#include <string>

namespace dchat
{
    class Group
    {
    public:
        u8 id[odhtdb::GROUP_ID_LENGTH];
        std::string name;
    };
}