15 lines
237 B
Swift
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 }
|
|
}
|