19 lines
352 B
Swift
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 }
|
|
}
|