Files
yinmeng-ios/xplan-ios/Main/Monents/Model/MonentsUnReadModel.h
2022-08-26 21:38:47 +08:00

26 lines
580 B
Objective-C

//
// MonentsUnReadModel.h
// xplan-ios
//
// Created by 冯硕 on 2022/5/19.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface MonentsUnReadModel : NSObject
/// 总计未读消息数
@property (nonatomic, assign) NSInteger total;
/// 评论未读消息数
@property (nonatomic, assign) NSInteger comment;
/// 分享未读消息数
@property (nonatomic, assign) NSInteger share;
/// 回复未读消息数
@property (nonatomic, assign) NSInteger reply;
/// 点赞未读消息数
@property (nonatomic, assign) NSInteger like;
@end
NS_ASSUME_NONNULL_END