// // BaseViewModel.swift // SHECommunity // // Created by 林 on 2024/11/25. // import Foundation import RxSwift class BaseViewModel { let disposeBag = DisposeBag() init() {} } protocol ViewModelType { associatedtype Input associatedtype Output var input: Input { get } var output: Output { get } }