1234567891011121314151617181920212223242526 |
- //
- // KXLaunchModel.h
- // CAISHEN
- //
- // Created by kuxuan on 2017/9/4.
- // Copyright © 2017年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- /*
- * data = {
- "image_url" = "http://bw.quyaqu.com/Uploads/20170901/1504261626210978.jpg";
- link = "http://m.ppdai.com/act/borrow/?source=tf420";
- "product_id" = 120;
- "skip_type" = 0;
- };
- */
- @interface KXLaunchModel : NSObject<NSCoding>
- @property (nonatomic,copy)NSString *product_id;
- @property (nonatomic,copy)NSString *image_url;
- @property (nonatomic,copy)NSString *link;
- @property (nonatomic,copy)NSString *skip_type;
- @end
|