26 lines
640 B
Objective-C
26 lines
640 B
Objective-C
//
|
||
// TreasureFailyKeyInfoModel.h
|
||
// xplan-ios
|
||
//
|
||
// Created by 冯硕 on 2023/2/17.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface TreasureFailyKeyInfoModel : PIBaseModel
|
||
///门票数
|
||
@property (nonatomic,assign) NSInteger drawTicketNum;
|
||
///幸运值
|
||
@property (nonatomic,assign) NSInteger luckyNum;
|
||
///写一个幸运值
|
||
@property (nonatomic,assign) NSInteger nextBallNum;
|
||
///需要幸运值
|
||
@property (nonatomic,assign) NSInteger needLuckyNum;
|
||
///保存我的精灵选择的精灵等级,0,初级,1,史诗,2,传说
|
||
@property (nonatomic,assign) NSInteger spriteLevel;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|