vds_ios/VDS/Protocols/Modelable.swift
Matt Bruce 641ae4d572 refactored code for debounce
Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
2022-07-29 13:04:36 -05:00

17 lines
265 B
Swift

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