22 lines
428 B
Objective-C
22 lines
428 B
Objective-C
//
|
|
// NetImageConfig.h
|
|
// mew-ios
|
|
//
|
|
// Created by 触海 on 2023/11/9.
|
|
//
|
|
|
|
#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
|