vds_ios/VDS/Protocols/FormFieldable.swift
Matt Bruce 4878fc70ab added associated type
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-27 10:34:36 -05:00

15 lines
237 B
Swift

//
// FormFieldable.swift
// VDS
//
// Created by Matt Bruce on 7/22/22.
//
import Foundation
public protocol FormFieldable {
associatedtype ValueType
var inputId: String? { get set }
var value: ValueType? { get set }
}