1234567891011121314151617181920 |
- //
- // MyTDTopicModel.h
- // smartRhino
- //
- // Created by tederen on 2019/10/31.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @class MyTDTopicModelSub;
- @interface MyTDTopicModel : BaseModel
- @property (nonatomic, strong) NSMutableArray *workGroupArray;
- @property (nonatomic, copy) NSString * topicName;
- @property (nonatomic, copy) NSString * topicContent;
- @property (nonatomic, strong)NSMutableArray<MyTDTopicModelSub *> * noteArray;
- @end
- NS_ASSUME_NONNULL_END
|