mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
13 lines
352 B
Swift
13 lines
352 B
Swift
|
|
public protocol PeerChatListEmbeddedInterfaceState: Coding {
|
|
var timestamp: Int32 { get }
|
|
|
|
func isEqual(to: PeerChatListEmbeddedInterfaceState) -> Bool
|
|
}
|
|
|
|
public protocol PeerChatInterfaceState: Coding {
|
|
var chatListEmbeddedState: PeerChatListEmbeddedInterfaceState? { get }
|
|
|
|
func isEqual(to: PeerChatInterfaceState) -> Bool
|
|
}
|