mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-16 04:51:25 +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
|