MyTDTopicModelSub.h 507 B

123456789101112131415161718192021
  1. //
  2. // MyTDTopicModelSub.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/10/31.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MyTDTopicModelSub : BaseModel
  11. @property (nonatomic, strong) UIImage *noteImage;
  12. @property (nonatomic, copy) NSString *noteImgaeUrl;
  13. @property (nonatomic, copy) NSString *noteTitle;
  14. @property (nonatomic, copy) NSString *noteContent;
  15. @property (nonatomic, copy) NSString *noteSource;
  16. @end
  17. NS_ASSUME_NONNULL_END