aboutsummaryrefslogtreecommitdiffhomepage
path: root/td/telegram/NotificationSoundType.h
diff options
context:
space:
mode:
authorlevlam <levlam@telegram.org>2022-04-11 20:01:44 +0300
committerlevlam <levlam@telegram.org>2022-04-11 20:01:44 +0300
commit7a2b3abe18d431add7187ea79c5d22a9e19c8669 (patch)
tree13b116ac5ebfe7ec68d03f779b42e2b334c769f5 /td/telegram/NotificationSoundType.h
parentbb8c4ca42ca9c3fb4ff2915caeffe391488e14fe (diff)
Support new NotificationSound.
Diffstat (limited to 'td/telegram/NotificationSoundType.h')
-rw-r--r--td/telegram/NotificationSoundType.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/td/telegram/NotificationSoundType.h b/td/telegram/NotificationSoundType.h
new file mode 100644
index 000000000..374139eea
--- /dev/null
+++ b/td/telegram/NotificationSoundType.h
@@ -0,0 +1,15 @@
+//
+// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
+//
+// Distributed under the Boost Software License, Version 1.0. (See accompanying
+// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+//
+#pragma once
+
+#include "td/utils/common.h"
+
+namespace td {
+
+enum class NotificationSoundType : int32 { None, Local, Ringtone };
+
+} // namespace td