12345678910111213141516171819202122 |
- //
- // KDPBannerModel.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPBannerModel : NSObject
- @property (nonatomic, strong) NSString *click_type;
- @property (nonatomic, strong) NSString *click_param;
- @property (nonatomic, strong) NSString *img;
- @property (nonatomic, strong) NSString *type;
- @property (nonatomic, strong) NSString *title;
- @end
- NS_ASSUME_NONNULL_END
|