1 //
2 // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 #pragma once
8 
9 namespace td {
10 
11 enum class SecretChatLayer : int32 {
12   Default = 73,
13   Mtproto2 = 73,
14   NewEntities = 101,
15   DeleteMessagesOnClose = 123,
16   Current = DeleteMessagesOnClose
17 };
18 
19 }  // namespace td
20