MyTDTopicModel.h 517 B

1234567891011121314151617181920
  1. //
  2. // MyTDTopicModel.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. @class MyTDTopicModelSub;
  11. @interface MyTDTopicModel : BaseModel
  12. @property (nonatomic, strong) NSMutableArray *workGroupArray;
  13. @property (nonatomic, copy) NSString * topicName;
  14. @property (nonatomic, copy) NSString * topicContent;
  15. @property (nonatomic, strong)NSMutableArray<MyTDTopicModelSub *> * noteArray;
  16. @end
  17. NS_ASSUME_NONNULL_END