38 lines
1020 B
C
38 lines
1020 B
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,///实名认证
|
||
|
};
|
||
|
|
||
|
|
||
|
@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
|