| 1234567891011121314151617181920 |
- //
- // RoomFaceCell.h
- // UniversalApp
- //
- // Created by bogokj on 2019/8/27.
- // Copyright © 2019 voidcat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class RoomFaceModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface RoomFaceCell : UICollectionViewCell
- @property(nonatomic, strong) RoomFaceModel *model;
- @end
- NS_ASSUME_NONNULL_END
|