21 lines
422 B
Objective-C
21 lines
422 B
Objective-C
//
|
|
// IfishBannerData.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/3/22.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface IfishBannerData : NSObject
|
|
|
|
@property(nonatomic)NSInteger adId;
|
|
@property(nonatomic)NSInteger adType;
|
|
@property(nonatomic,copy)NSString *adImage;
|
|
@property(nonatomic,copy)NSString *adLink;
|
|
|
|
-(instancetype)initWithDict:(NSDictionary *)dict;
|
|
|
|
@end
|