31 lines
387 B
Objective-C
31 lines
387 B
Objective-C
//
|
|
// ClientDataModel.m
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/3/7.
|
|
//
|
|
|
|
#import "ClientDataModel.h"
|
|
#import "XPAdImageTool.h"
|
|
|
|
@implementation FaceJson
|
|
|
|
@end
|
|
|
|
@implementation AppUISetting
|
|
|
|
@end
|
|
|
|
@implementation ClientDataModel
|
|
|
|
- (void)setSplashVo:(AdvertiseModel *)splashVo {
|
|
_splashVo = splashVo;
|
|
if (_splashVo) {
|
|
[XPAdImageTool.shareImageTool saveAdInfo:splashVo];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@end
|