Swiftgram/TelegramCore/SecureIdPhoneValue.swift
Peter Iakovlev 33cc8132be no message
2018-03-27 12:03:39 +04:00

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