18 lines
383 B
Objective-C
18 lines
383 B
Objective-C
//
|
|
// XPRoomTopicPresenter.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/14.
|
|
//
|
|
|
|
#import "BaseMvpPresenter.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class RoomInfoModel;
|
|
@interface XPRoomTopicPresenter : BaseMvpPresenter
|
|
///更新房间信息
|
|
- (void)roomTopicUpdate:(NSString *)roomDesc introduction:(NSString *)introduction roomInfo:(RoomInfoModel *)roomInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|