Files
peko-ios/YuMi/Modules/YMMessage/View/FindNew/Model/FindNewGreetListModel.h

32 lines
592 B
C
Raw Normal View History

2023-07-06 16:54:13 +08:00
//
2023-07-14 18:50:55 +08:00
// FindNewGreetListModel.h
2023-07-06 16:54:13 +08:00
// YUMI
//
// Created by YUMI on 2022/6/13.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
2023-07-14 18:50:55 +08:00
@class FindNewGreetModel;
2023-11-15 17:25:09 +08:00
@interface FindNewGreetListModel : PIBaseModel
2023-07-06 16:54:13 +08:00
2023-07-14 18:50:55 +08:00
///开始的
2023-07-06 16:54:13 +08:00
@property (nonatomic,copy) NSString * start;
2023-07-14 18:50:55 +08:00
///列表
@property (nonatomic,strong) NSArray<FindNewGreetModel *> *list;
2023-07-06 16:54:13 +08:00
@end
2023-11-15 17:25:09 +08:00
@interface FindNewGreetModel : PIBaseModel
2023-07-14 18:50:55 +08:00
///id
2023-07-06 16:54:13 +08:00
@property (nonatomic,assign) NSInteger fId;
2023-07-14 18:50:55 +08:00
///消息
2023-07-06 16:54:13 +08:00
@property (nonatomic,copy) NSString *message;
2023-07-14 18:50:55 +08:00
///是否选中
2023-07-06 16:54:13 +08:00
@property (nonatomic,assign) BOOL isSelect;
@end
NS_ASSUME_NONNULL_END