secant-ios-wallet/secant/Base/ViewModel.swift

17 lines
237 B
Swift
Raw Normal View History

2021-08-06 16:38:47 -07:00
//
// ViewModel.swift
// secant
//
// Created by Francisco Gindre on 8/6/21.
//
import Foundation
open class BaseViewModel<S> {
public var services: S
public init(services: S) {
self.services = services
}
}