动态消息列表

This commit is contained in:
fengshuo
2022-05-20 20:50:35 +08:00
parent 465e73b6f1
commit fe8747ce5e
21 changed files with 638 additions and 18 deletions

View File

@@ -0,0 +1,25 @@
//
// 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