vds_ios/VDS/Protocols/FormFieldable.swift
Matt Bruce 15d71e41dd added uuid
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-10 16:25:56 -05:00

15 lines
239 B
Swift

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