mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
17 lines
373 B
Swift
17 lines
373 B
Swift
import Foundation
|
|
|
|
public struct SecureIdPhoneField: Equatable {
|
|
public let rawValue: String
|
|
|
|
public init(rawValue: String) {
|
|
self.rawValue = rawValue
|
|
}
|
|
|
|
public static func ==(lhs: SecureIdPhoneField, rhs: SecureIdPhoneField) -> Bool {
|
|
if lhs.rawValue != rhs.rawValue {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
}
|