12345678910111213141516171819202122 |
- //
- // DRTimeLineChannelModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2019/1/7.
- // Copyright © 2019年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface DRTimeLineChannelModel : NSObject
- @property (nonatomic, copy) NSString *Id;
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *img;
- @property (nonatomic, copy) NSString *status;
- @end
- NS_ASSUME_NONNULL_END
|