22 lines
504 B
Objective-C
22 lines
504 B
Objective-C
//
|
|
// RoomSailingPrizeListModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/8/15.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "RoomSailingPrizeModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomSailingPrizeListModel : NSObject
|
|
///奖品的数组
|
|
@property (nonatomic,strong) NSArray<RoomSailingPrizeModel *> *prizeItemList;
|
|
///剩余钥匙数
|
|
@property (nonatomic,assign) NSInteger remainKeyNum;
|
|
///是否有元宝礼物
|
|
@property (nonatomic,assign) BOOL specialStatus;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|