42 lines
1.2 KiB
Objective-C
42 lines
1.2 KiB
Objective-C
//
|
|
// XPMineItemModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/16.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
typedef NS_ENUM(NSInteger, XPMineItemType) {
|
|
XPMineItemType_Match_Apply_Record, ///报名记录
|
|
XPMineItemType_Match_Bonus,///奖金
|
|
XPMineItemType_Match_Standings, ///战绩
|
|
XPMineItemType_Match_Card_Bag, ///卡包
|
|
XPMineItemType_Match_Shopping, ///商城
|
|
XPMineItemType_Match_Relevance_Account, ///关联账号
|
|
XPMineItemType_My_Room, ///我的房间
|
|
XPMineItemType_Collect_Room, ///收藏房间
|
|
XPMineItemType_My_Level,///我的等级
|
|
XPMineItemType_Teenager_Mode, ///青少年模式
|
|
XPMineItemType_Real_Name_Authentic,///实名认证
|
|
XPMineItemType_Account,///我的账户
|
|
XPMineItemType_Invite_Friend,///邀请好友
|
|
XPMineItemType_Personinfo,///个人中心
|
|
XPMineItemType_My_Dressup,///我的装扮
|
|
};
|
|
|
|
|
|
@interface XPMineItemModel : NSObject
|
|
///图片的名字
|
|
@property (nonatomic,copy) NSString *itmeImageName;
|
|
///名字
|
|
@property (nonatomic,copy) NSString *itmeName;
|
|
///跳转类型
|
|
@property (nonatomic,assign) XPMineItemType type;
|
|
///圆角
|
|
@property (nonatomic, assign) UIRectCorner cornerType;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|