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

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