Files
peko-ios/YuMi/Modules/YMMine/View/Noble/Model/NobleInfo.h
2024-03-29 19:18:58 +08:00

39 lines
1002 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;
///贵族保级值
@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