diff options
| author | levlam <levlam@telegram.org> | 2022-04-11 20:01:44 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2022-04-11 20:01:44 +0300 |
| commit | 7a2b3abe18d431add7187ea79c5d22a9e19c8669 (patch) | |
| tree | 13b116ac5ebfe7ec68d03f779b42e2b334c769f5 /td/telegram/NotificationSoundType.h | |
| parent | bb8c4ca42ca9c3fb4ff2915caeffe391488e14fe (diff) | |
Support new NotificationSound.
Diffstat (limited to 'td/telegram/NotificationSoundType.h')
| -rw-r--r-- | td/telegram/NotificationSoundType.h | 15 |
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 |
