Files
peko-ios/YuMi/Modules/YMMessage/View/FindNew/Model/FindNewGreetListModel.h
2023-11-15 17:25:09 +08:00

32 lines
592 B
Objective-C

//
// FindNewGreetListModel.h
// YUMI
//
// Created by YUMI on 2022/6/13.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class FindNewGreetModel;
@interface FindNewGreetListModel : PIBaseModel
///开始的
@property (nonatomic,copy) NSString * start;
///列表
@property (nonatomic,strong) NSArray<FindNewGreetModel *> *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