123456789101112131415161718192021 |
- //
- // MyTDTopicModelSub.h
- // smartRhino
- //
- // Created by tederen on 2019/10/31.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface MyTDTopicModelSub : BaseModel
- @property (nonatomic, strong) UIImage *noteImage;
- @property (nonatomic, copy) NSString *noteImgaeUrl;
- @property (nonatomic, copy) NSString *noteTitle;
- @property (nonatomic, copy) NSString *noteContent;
- @property (nonatomic, copy) NSString *noteSource;
- @end
- NS_ASSUME_NONNULL_END
|