RAPhotoItemModel.h 473 B

12345678910111213141516171819202122
  1. //
  2. // RAPhotoItemModel.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/10/30.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "RAPhotoModelDelegate.h"
  10. @interface RAPhotoItemModel : NSObject
  11. @property (nonatomic,copy) NSString *url;
  12. @property (nonatomic,copy) NSString *placeHolder;
  13. @property (nonatomic,strong) UIImage *photo;
  14. @property (nonatomic,weak) id<RAPhotoModelDelegate> delegate;
  15. - (BOOL)isEmpty;
  16. @end