//
// Updatable.swift
// PaiaiDataKit
//
// Created by ffib on 2018/12/25.
// Copyright © 2018 yb. All rights reserved.
//
import Foundation
import RxSwift
public protocol Updatable {
associatedtype DataType
func update(data: DataType) -> Observable<Void>
}
|