Files
yinmeng-ios/xplan-ios/Main/Mine/Model/XPMineFuntionItemModel.h
2022-07-25 18:56:36 +08:00

29 lines
701 B
Objective-C

//
// XPMineFuntionItemModel.h
// xplan-ios
//
// Created by GreenLand on 2022/7/22.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPMineFuntionItemModel : NSObject
@property (nonatomic, assign) NSInteger centerStatus;
@property (nonatomic, copy) NSString *centerPic;
@property (nonatomic, assign) NSInteger centerId;
@property (nonatomic, copy) NSString *centerBadge;
@property (nonatomic, assign) NSInteger skipType;
@property (nonatomic, assign) NSInteger centerSeq;
@property (nonatomic, copy) NSString *centerName;
@property (nonatomic, copy) NSString *centerUrl;
///未读消息
@property (nonatomic, assign) NSInteger unReadCount;
@end
NS_ASSUME_NONNULL_END