1234567891011121314151617181920212223 |
- //
- // LDMorePicCollectionModel.h
- // hc
- //
- // Created by jcymac on 2018/4/25.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface LDMorePicCollectionModel : NSObject
- @property (nonatomic, strong) NSString *Id;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *img;
- @property (nonatomic, strong) NSString *show_type; //1 - 原生 ; 2 - H5
- @property (nonatomic, strong) NSString *url;
- @property (nonatomic, strong) NSString *jump_type;
- @property (nonatomic, strong) NSString *ios_js_string;
- @end
|