session-ios/SessionMessagingKit/LibSessionUtil/libsession-util.xcframework/session/config/notify.hpp

13 lines
195 B
C++

#pragma once
namespace session::config {
enum class notify_mode {
defaulted = 0,
all = 1,
disabled = 2,
mentions_only = 3, // Only for groups; for DMs this becomes `all`
};
}