Files
Swiftgram/TelegramCore/SecureIdEmailField.swift
Peter Iakovlev d67854a097 no message
2018-03-23 03:11:22 +04:00

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
}
}