// // FindNewGreetListModel.h // YUMI // // Created by YUMI on 2022/6/13. // #import NS_ASSUME_NONNULL_BEGIN @class FindNewGreetModel; @interface FindNewGreetListModel : PIBaseModel ///开始的 @property (nonatomic,copy) NSString * start; ///列表 @property (nonatomic,strong) NSArray *list; @end @interface FindNewGreetModel : PIBaseModel ///id @property (nonatomic,assign) NSInteger fId; ///消息 @property (nonatomic,copy) NSString *message; ///是否选中 @property (nonatomic,assign) BOOL isSelect; @end NS_ASSUME_NONNULL_END