
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
26 lines
576 B
Objective-C
26 lines
576 B
Objective-C
//
|
|
// MonentsUnReadModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/5/19.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MonentsUnReadModel : PIBaseModel
|
|
/// 总计未读消息数
|
|
@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
|