MutableTextCellViewModel.swift 393 B

12345678910111213141516171819
  1. //
  2. // DeviceTokenCellViewModel.swift
  3. // Bark
  4. //
  5. // Created by huangfeng on 2022/3/23.
  6. // Copyright © 2022 Fin. All rights reserved.
  7. //
  8. import RxCocoa
  9. import UIKit
  10. class MutableTextCellViewModel: ViewModel {
  11. var title: String
  12. var text: Driver<String>
  13. init(title: String, text: Driver<String>) {
  14. self.title = title
  15. self.text = text
  16. super.init()
  17. }
  18. }