no message

This commit is contained in:
Peter Iakovlev
2018-03-27 12:03:39 +04:00
parent d67854a097
commit 33cc8132be
17 changed files with 1393 additions and 825 deletions

View File

@@ -0,0 +1,16 @@
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
}
}