Refactoring

This commit is contained in:
Ali
2023-04-17 20:21:14 +04:00
parent afe568c41f
commit 6e3cc4a6e9
81 changed files with 311 additions and 435 deletions

View File

@@ -1,5 +1,5 @@
import Foundation
import Postbox
import TelegramCore
public final class TelegramHashtag {
public let peerName: String?
@@ -12,10 +12,10 @@ public final class TelegramHashtag {
}
public final class TelegramPeerMention {
public let peerId: PeerId
public let peerId: EnginePeer.Id
public let mention: String
public init(peerId: PeerId, mention: String) {
public init(peerId: EnginePeer.Id, mention: String) {
self.peerId = peerId
self.mention = mention
}