动态消息列表
This commit is contained in:
25
xplan-ios/Main/Monents/Model/MonentsUnReadModel.h
Normal file
25
xplan-ios/Main/Monents/Model/MonentsUnReadModel.h
Normal 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
|
Reference in New Issue
Block a user