mirror of
https://github.com/oxen-io/session-android.git
synced 2025-01-11 08:53:38 +00:00
13 lines
184 B
C++
13 lines
184 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace session::config {
|
|
|
|
enum class Namespace : std::int16_t {
|
|
UserProfile = 2,
|
|
ClosedGroupInfo = 11,
|
|
};
|
|
|
|
} // namespace session::config
|