PhotoListCellModel.m 368 B

12345678910111213141516171819202122
  1. //
  2. // PhotoListCellModel.m
  3. // LenzCameraNativeModuleForRN
  4. //
  5. // Created by 王昭威 on 2023/1/23.
  6. //
  7. #import "PhotoListCellModel.h"
  8. @implementation PhotoListCellModel
  9. - (instancetype)initWithName:(NSString *)name andImage:(UIImage *)image{
  10. self = [super init];
  11. if(self){
  12. _name = name;
  13. _image = image;
  14. }
  15. return self;
  16. }
  17. @end