mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
17 lines
355 B
Swift
17 lines
355 B
Swift
import Foundation
|
|
|
|
public struct SecureIdPhoneValue: Equatable {
|
|
public let phone: String
|
|
|
|
public init(phone: String) {
|
|
self.phone = phone
|
|
}
|
|
|
|
public static func ==(lhs: SecureIdPhoneValue, rhs: SecureIdPhoneValue) -> Bool {
|
|
if lhs.phone != rhs.phone {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
}
|