1234567891011121314151617181920212223242526 |
- //
- // KDPLiveListModel.h
- // KuDianProject
- //
- // Created by admin on 2019/7/10.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPLiveListModel : NSObject
- @property (nonatomic, copy) NSString *show_img;
- @property (nonatomic, copy) NSString *show_time;
- @property (nonatomic, copy) NSString *live_stream_id;
- @property (nonatomic, copy) NSString *goods_num;
- @property (nonatomic, copy) NSString *pre_rebate;
- @property (nonatomic, copy) NSString *order_num;
- @end
- NS_ASSUME_NONNULL_END
|