ViewModelType.swift 317 B

12345678910111213141516171819
  1. //
  2. // ViewModelType.swift
  3. // Bark
  4. //
  5. // Created by huangfeng on 2020/11/17.
  6. // Copyright © 2020 Fin. All rights reserved.
  7. //
  8. import Foundation
  9. import RxSwift
  10. protocol ViewModelType {
  11. associatedtype Input
  12. associatedtype Output
  13. func transform(input: Input) -> Output
  14. }
  15. class ViewModel: NSObject {}