32 lines
763 B
Objective-C
32 lines
763 B
Objective-C
//
|
|
// NobleCenterModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/1/3.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "NobleAuthInfo.h"
|
|
#import "NobleInfo.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NobleCenterModel : PIBaseModel
|
|
|
|
///用户当前贵族等级
|
|
@property (nonatomic, assign) NSInteger currLevel;
|
|
///用户当前权力值
|
|
@property (nonatomic, assign) NSInteger currScore;
|
|
///贵族到期剩余秒数
|
|
@property (nonatomic, assign) NSInteger remainSeconds;
|
|
///贵族权限信息列表
|
|
@property (nonatomic, strong) NSArray<NobleAuthInfo *> *vipAuthInfos;
|
|
///贵族信息列表
|
|
@property (nonatomic, strong) NSArray<NobleInfo *> *vipInfos;
|
|
///当前是否为最高等级
|
|
@property (nonatomic, assign) BOOL isMaxLevel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|