// // File.swift // Pingo // // Created by Jeff Potter on 11/11/14. // Copyright (c) 2015 jpotts18. All rights reserved. // import Foundation import UIKit public class ValidationError { public let textField:UITextField public var errorLabel:UILabel? public let errorMessage:String public init(textField:UITextField, error:String){ self.textField = textField self.errorMessage = error } }