RoomFaceCell.h 334 B

1234567891011121314151617181920
  1. //
  2. // RoomFaceCell.h
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/8/27.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class RoomFaceModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RoomFaceCell : UICollectionViewCell
  12. @property(nonatomic, strong) RoomFaceModel *model;
  13. @end
  14. NS_ASSUME_NONNULL_END