vds_ios/VDS/Protocols/ModelHandlerable.swift
Matt Bruce 7fef4aadb7 refactored constants
updated constant references
fixed bug in checkbox

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-08-03 08:46:51 -05:00

16 lines
266 B
Swift

//
// Modelable.swift
// VDS
//
// Created by Matt Bruce on 7/22/22.
//
import Foundation
public protocol ModelHandlerable {
associatedtype ModelType
var model: ModelType { get set }
init(with model: ModelType)
func set(with model: ModelType)
}