PhotoListCellModel.h 437 B

123456789101112131415161718192021
  1. //
  2. // PhotoListCellModel.h
  3. // LenzCameraNativeModuleForRN
  4. //
  5. // Created by 王昭威 on 2023/1/23.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PhotoListCellModel : NSObject
  10. @property (nonatomic, copy, nullable) NSString* name;
  11. @property (nonatomic, weak, nullable) UIImage* image;
  12. - (instancetype)initWithName: (nullable NSString*)name andImage:(nullable UIImage*)image;
  13. @end
  14. NS_ASSUME_NONNULL_END