55 lines
1.7 KiB
Objective-C
55 lines
1.7 KiB
Objective-C
//
|
|
// YMMineItemModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/16.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
typedef NS_ENUM(NSInteger, XPMineItemType) {
|
|
XPMineItemType_Match_Relevance_Account = 2, ///跳转url (关联账号,实名认证, 邀请好友)
|
|
XPMineItemType_Match_Apply_Record, ///报名记录
|
|
XPMineItemType_Match_Bonus,///奖金
|
|
XPMineItemType_Match_Standings, ///战绩
|
|
XPMineItemType_Match_Card_Bag, ///卡包
|
|
XPMineItemType_Match_Shopping, ///商城
|
|
XPMineItemType_Account,///我的账户
|
|
XPMineItemType_Personinfo,///个人中心
|
|
XPMineItemType_Attention_List,///关注列表
|
|
XPMineItemType_Foot_Print, ///足迹、进房记录
|
|
XPMineItemType_Fans_List,///粉丝列表
|
|
XPMineItemType_Noble_Center,///贵族中心
|
|
XPMineItemType_Skill_Card, ///技能卡
|
|
XPMineItemType_My_Room = 64, ///我的房间
|
|
XPMineItemType_Collect_Room = 65, ///收藏房间
|
|
XPMineItemType_My_Guild = 67,///我的公会
|
|
XPMineItemType_Teenager_Mode = 68, ///青少年模式
|
|
XPMineItemType_Match_Manage = 69, ///赛程管理
|
|
XPMineItemType_Visitor = 70,///访客记录
|
|
XPMineItemType_CP = 71,///cp关系
|
|
XPMineItemType_FansTeam = 72,///粉丝团
|
|
XPMineItemType_DressUp_Market = 73, ///装扮商场
|
|
XPMineItemType_My_Dressup = 74,///我的装扮
|
|
XPMineItemType_My_Set = 75///设置
|
|
|
|
};
|
|
|
|
|
|
@interface XPMineItemModel : PIBaseModel
|
|
///图片的名字
|
|
@property (nonatomic,copy) NSString *itemImageName;
|
|
///名字
|
|
@property (nonatomic,copy) NSString *itemName;
|
|
///跳转类型
|
|
@property (nonatomic,assign) XPMineItemType type;
|
|
///圆角
|
|
@property (nonatomic, assign) UIRectCorner cornerType;
|
|
///未读消息
|
|
@property (nonatomic, assign) NSInteger unReadCount;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|