vds_ios/VDS/Protocols/FormFieldable.swift
Matt Bruce 16e8067f8e commented code
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2023-07-26 10:23:38 -05:00

19 lines
352 B
Swift

//
// FormFieldable.swift
// VDS
//
// Created by Matt Bruce on 7/22/22.
//
import Foundation
/// Protocol used for a FormField object
public protocol FormFieldable {
/// Unique Id for the Form Field object within a Form
var inputId: String? { get set }
/// Value for the Form Field
var value: AnyHashable? { get set }
}