14 lines
221 B
Swift
14 lines
221 B
Swift
|
//
|
||
|
// DisposeBagCollectable.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by sxiaojian on 2021/2/5.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import Combine
|
||
|
|
||
|
protocol DisposeBagCollectable: class {
|
||
|
var disposeBag: Set<AnyCancellable> { get set }
|
||
|
}
|