| 12345678910111213141516171819202122 |
- //
- // RAPhotoItemModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/30.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "RAPhotoModelDelegate.h"
- @interface RAPhotoItemModel : NSObject
- @property (nonatomic,copy) NSString *url;
- @property (nonatomic,copy) NSString *placeHolder;
- @property (nonatomic,strong) UIImage *photo;
- @property (nonatomic,weak) id<RAPhotoModelDelegate> delegate;
- - (BOOL)isEmpty;
- @end
|