Files
peko-ios/YuMi/Modules/YMMine/View/Noble/Model/NobleInfo.h
2024-04-11 15:47:44 +08:00

39 lines
984 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.

//
// 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;
///VIP保级值
@property (nonatomic, assign) NSInteger levelKeepScore;
///VIP升级值
@property (nonatomic, assign) NSInteger levelUpScore;
@property (nonatomic, copy) NSString *ownAuthTypeStr;
///有用的权限type列表
@property (nonatomic, copy) NSArray<NSNumber *> *ownAuthTypes;
///VIPicon
@property (nonatomic, copy) NSString *vipIcon;
///VIP等级
@property (nonatomic, assign) NSInteger vipLevel;
///VIPlogo
@property (nonatomic, copy) NSString *vipLogo;
///VIP名称
@property (nonatomic, copy) NSString *vipName;
///返钻
@property(nonatomic,copy) NSArray<PINobleRebateModel *> *returnProfits;
@property(nonatomic,assign) BOOL isReturnProfit;
@end
NS_ASSUME_NONNULL_END