39 lines
1002 B
Objective-C
39 lines
1002 B
Objective-C
//
|
||
// NobleInfo.h
|
||
// xplan-ios
|
||
//
|
||
// Created by GreenLand on 2022/1/3.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
#import "PINobleRebateModel.h"
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface NobleInfo : PIBaseModel
|
||
|
||
///是否敬请期待:1. 否 2.是
|
||
@property (nonatomic, assign) NSInteger comingSoon;
|
||
///贵族保级值
|
||
@property (nonatomic, assign) NSInteger levelKeepScore;
|
||
///贵族升级值
|
||
@property (nonatomic, assign) NSInteger levelUpScore;
|
||
|
||
@property (nonatomic, copy) NSString *ownAuthTypeStr;
|
||
///有用的权限type列表
|
||
@property (nonatomic, copy) NSArray<NSNumber *> *ownAuthTypes;
|
||
///贵族icon
|
||
@property (nonatomic, copy) NSString *vipIcon;
|
||
///贵族等级
|
||
@property (nonatomic, assign) NSInteger vipLevel;
|
||
///贵族logo
|
||
@property (nonatomic, copy) NSString *vipLogo;
|
||
///贵族名称
|
||
@property (nonatomic, copy) NSString *vipName;
|
||
///返钻
|
||
@property(nonatomic,copy) NSArray<PINobleRebateModel *> *returnProfits;
|
||
|
||
@property(nonatomic,assign) BOOL isReturnProfit;
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|