added associated type

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-07-27 10:34:36 -05:00
parent d61f60cc21
commit 4878fc70ab

View File

@ -8,6 +8,7 @@
import Foundation
public protocol FormFieldable {
associatedtype ValueType
var inputId: String? { get set }
var value: AnyHashable? { get set }
var value: ValueType? { get set }
}