This commit is contained in:
Ali 2020-11-27 22:12:59 +04:00
parent bc0272e224
commit 1db12483cc
19 changed files with 466 additions and 129 deletions

View file

@ -141,6 +141,7 @@ public struct TelegramChannelFlags: OptionSet {
public static let isCreator = TelegramChannelFlags(rawValue: 1 << 1)
public static let isScam = TelegramChannelFlags(rawValue: 1 << 2)
public static let hasGeo = TelegramChannelFlags(rawValue: 1 << 3)
public static let hasVoiceChat = TelegramChannelFlags(rawValue: 1 << 4)
}
public final class TelegramChannel: Peer {