mirror of
https://github.com/Finb/Bark.git
synced 2025-12-08 21:36:01 +00:00
18 lines
343 B
Swift
18 lines
343 B
Swift
//
|
|
// ArchiveSettingCellViewModel.swift
|
|
// Bark
|
|
//
|
|
// Created by huangfeng on 2020/11/20.
|
|
// Copyright © 2020 Fin. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import RxCocoa
|
|
class ArchiveSettingCellViewModel: ViewModel {
|
|
var on: BehaviorRelay<Bool>
|
|
init(on: BehaviorRelay<Bool>) {
|
|
self.on = on
|
|
super.init()
|
|
}
|
|
}
|