[WIP] Topics

This commit is contained in:
Ali
2022-10-23 18:03:26 +04:00
parent e090872d2f
commit 93a7f7ece8
62 changed files with 1080 additions and 473 deletions

View File

@@ -345,14 +345,14 @@ public final class ChatPresentationInterfaceState: Equatable {
public var title: String
public var icon: Int64?
public var iconColor: Int32
public var isOwn: Bool
public var isOwnedByMe: Bool
public var isClosed: Bool
public init(title: String, icon: Int64?, iconColor: Int32, isOwn: Bool, isClosed: Bool) {
public init(title: String, icon: Int64?, iconColor: Int32, isOwnedByMe: Bool, isClosed: Bool) {
self.title = title
self.icon = icon
self.iconColor = iconColor
self.isOwn = isOwn
self.isOwnedByMe = isOwnedByMe
self.isClosed = isClosed
}
}