Bark/Common/ViewModelType.swift
2020-11-18 15:25:44 +08:00

20 lines
316 B
Swift

//
// ViewModelType.swift
// Bark
//
// Created by huangfeng on 2020/11/17.
// Copyright © 2020 Fin. All rights reserved.
//
import Foundation
import RxSwift
protocol ViewModelType {
associatedtype Input
associatedtype Output
func transform(input: Input) -> Output
}
class ViewModel:NSObject{ }