26 lines
580 B
Objective-C
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
|