Files
yinmeng-ios/xplan-ios/Main/Room/View/Setting/Presenter/XPRoomTopicPresenter.h
2022-03-15 15:23:52 +08:00

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