24 lines
332 B
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 }
|
|
}
|