Files
yinmeng-ios/xplan-ios/Main/Room/View/RoomDelegate.h

23 lines
310 B
C
Raw Normal View History

2021-10-26 19:14:01 +08:00
//
// RoomDelegate.h
// xplan-ios
//
// Created by apple on 2021/10/26.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class RoomInfoModel;
@class UserInfoModel;
@protocol RoomDelegate <NSObject>
- (RoomInfoModel*)getRoomInfo;
- (UserInfoModel*)getUserInfo;
@end
NS_ASSUME_NONNULL_END