2023-08-10 10:12:19 +08:00
|
|
|
|
//
|
|
|
|
|
// TreasureFailyKeyInfoModel.h
|
|
|
|
|
// xplan-ios
|
|
|
|
|
//
|
|
|
|
|
// Created by 冯硕 on 2023/2/17.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
2023-11-15 17:25:09 +08:00
|
|
|
|
@interface TreasureFailyKeyInfoModel : PIBaseModel
|
2023-08-10 10:12:19 +08:00
|
|
|
|
///门票数
|
|
|
|
|
@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
|