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