1234567891011121314151617181920 |
- //
- // LFWMorePicCollectionModel.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/4/25.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface LFWMorePicCollectionModel : 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;
- @end
|