You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
516 B
26 lines
516 B
// |
|
// Photo.h |
|
// watch |
|
// |
|
// Created by xTT on 2017/7/22. |
|
// Copyright © 2017年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseModel.h" |
|
|
|
@interface Photo : baseModel |
|
|
|
@property (strong, nonatomic) NSString *thumbURL; |
|
@property (strong, nonatomic) NSString *url; |
|
@property (strong, nonatomic) NSNumber *time; |
|
|
|
/** |
|
是否选中 |
|
*/ |
|
@property (assign ,nonatomic) BOOL isSelect; |
|
|
|
+ (void)deletePhotos:(NSMutableArray *)photoArr |
|
success:(void (^)())success |
|
failure:(void (^)())failure; |
|
|
|
@end
|
|
|