20 lines
349 B
Objective-C
20 lines
349 B
Objective-C
//
|
|
// TreasureFairyLimitModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2023/3/1.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TreasureFairyLimitModel : PIBaseModel
|
|
///是否开启
|
|
@property (nonatomic,assign) BOOL open;
|
|
///等级限制
|
|
@property (nonatomic,assign) NSInteger levelLimit;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|