28 lines
548 B
Objective-C
28 lines
548 B
Objective-C
//
|
|
// IfishBannerData.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/22.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "IfishBannerData.h"
|
|
|
|
@implementation IfishBannerData
|
|
|
|
-(instancetype)initWithDict:(NSDictionary *)dict
|
|
{
|
|
if (self = [super init]) {
|
|
_adId = [[dict objectForKey:@"adId"] integerValue];
|
|
_adType = [[dict objectForKey:@"adType"] integerValue];
|
|
_adImage = [dict objectForKey:@"adImage"];
|
|
_adLink = [dict objectForKey:@"adLink"];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
@end
|