mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00

git-subtree-dir: submodules/TelegramCore git-subtree-mainline: 971273e8f8f49a47f14b251d2f35e3445a61fc3f git-subtree-split: 9561227540acef69894e6546395ab223a6233600
17 lines
355 B
Swift
17 lines
355 B
Swift
import Foundation
|
|
|
|
public struct SecureIdEmailValue: Equatable {
|
|
public let email: String
|
|
|
|
public init(email: String) {
|
|
self.email = email
|
|
}
|
|
|
|
public static func ==(lhs: SecureIdEmailValue, rhs: SecureIdEmailValue) -> Bool {
|
|
if lhs.email != rhs.email {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
}
|