// // DelegateObject.swift // MVMCoreUI // // Created by Scott Pfeil on 4/12/19. // Copyright © 2019 Verizon Wireless. All rights reserved. // import UIKit @objc(MVMCoreUIDelegateObject) open class DelegateObject: MVMCore.DelegateObject { public weak var formValidationProtocol: FormValidationProtocol? open override func setAll(withDelegate delegate: Any) { formValidationProtocol = delegate as? FormValidationProtocol } }