Files
peko-ios/YuMi/Modules/YMRoom/View/TreasureFairy/Model/TreasureFailyKeyInfoModel.h
2023-11-15 17:25:09 +08:00

26 lines
640 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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