1234567891011121314151617181920212223 |
- import Foundation
- import RxSwift
- protocol GroupDetailRepository {
-
- init(groupId: String)
-
- func load() -> Single<GroupDetailItem>
- func update(name: String) -> Completable
- func quit() -> Completable
- func lock() -> Completable
- func unlock() -> Completable
- func removeMember(userId: String) -> Completable
- }
|