17 lines
265 B
Swift
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)
|
|
}
|