29 lines
541 B
Objective-C
29 lines
541 B
Objective-C
//
|
|
// XPNobleCenterTableHeadView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/1/4.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NobleCenterModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPNobleCenterTableHeadView : UIView
|
|
|
|
@property (nonatomic, strong) NobleInfo *vipInfo;
|
|
|
|
///用户是否为当前等级
|
|
@property (nonatomic, assign) BOOL isCurrentLevel;
|
|
|
|
///当前权力值
|
|
@property (nonatomic, assign) NSInteger currentScore;
|
|
|
|
///当前用户是否开通了VIP
|
|
@property (nonatomic, assign) BOOL isOpenNoble;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|