vds_ios/VDS/Protocols/Modelable.swift
Matt Bruce 74cbd6a2fe udpated protocols
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-28 18:07:02 -05:00

15 lines
227 B
Swift

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