18 lines
283 B
Objective-C
18 lines
283 B
Objective-C
//
|
|
// XPRoomInfoView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class RoomInfoModel;
|
|
@interface XPRoomInfoContainerView : UIView
|
|
///
|
|
@property (nonatomic,strong) RoomInfoModel *roomInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|