mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
20 lines
316 B
Swift
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{ }
|