jsdw_ios/QuickLocation/Main/BaseViewModel/BaseViewModel.swift

24 lines
332 B
Swift

//
// 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 }
}