22 lines
253 B
Plaintext
22 lines
253 B
Plaintext
//
|
|
// NetImageConfig.m
|
|
// YUMI
|
|
//
|
|
// Created by zu on 2021/11/25.
|
|
//
|
|
|
|
#import "NetImageConfig.h"
|
|
|
|
@implementation NetImageConfig
|
|
|
|
- (instancetype)init
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
_autoLoad = YES;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|