mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
18 lines
356 B
Swift
18 lines
356 B
Swift
import Foundation
|
|
|
|
public struct PeerGroupId: Hashable, Equatable, RawRepresentable {
|
|
public var rawValue: Int32
|
|
|
|
public init(rawValue: Int32) {
|
|
self.rawValue = rawValue
|
|
}
|
|
}
|
|
|
|
struct WrappedPeerGroupId: Hashable, Equatable {
|
|
let groupId: PeerGroupId?
|
|
|
|
init(groupId: PeerGroupId?) {
|
|
self.groupId = groupId
|
|
}
|
|
}
|