1234567891011121314151617181920212223242526272829303132 |
- //
- // SelectImageModel.h
- // smartRhino
- //
- // Created by tederen on 2019/11/26.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol SelectImageModel
- @end
- @interface SelectImageModel : BaseModel
- @property (nonatomic, copy) NSString *AbsolutePath;
- @property (nonatomic, assign)NSInteger FileId ;
- @property (nonatomic, copy) NSString *FileName;
- @property (nonatomic, copy) NSString *Author;
- @property (nonatomic, copy) NSString *FileType;
- @property (nonatomic, copy) NSString *RelativePath;
- @property (nonatomic, assign) NSInteger Id ;
- @property (nonatomic, copy) NSString *FileUrl;
- @property (nonatomic, strong) UIImage *image;
- @property (nonatomic, copy) NSString *MinAbsolutePath;
- @property (nonatomic, assign) NSInteger Size;
- @property (nonatomic, assign) CollectModelType TypeId;
- @end
- NS_ASSUME_NONNULL_END
|