23 lines
423 B
Plaintext
23 lines
423 B
Plaintext
//
|
|
// NetImageConfig.h
|
|
// YUMI
|
|
//
|
|
// Created by zu on 2021/11/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "UIImageConstant.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NetImageConfig : NSObject
|
|
|
|
@property (nonatomic, assign) BOOL autoLoad;
|
|
@property (nonatomic, assign) ImageType imageType;
|
|
@property (nonatomic, assign) CGFloat radius;
|
|
@property (nonatomic, strong) UIImage * placeHolder;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|