45 lines
921 B
Objective-C
45 lines
921 B
Objective-C
//
|
|
// TFUpgradeMemberModel.h
|
|
// TFReader
|
|
//
|
|
// Created by 谢腾飞 on 2020/12/13.
|
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class TFMemberInfoModel, TFGoodsModel, TFPrivilegeModel;
|
|
|
|
@interface TFUpgradeMemberModel : NSObject
|
|
|
|
@property (nonatomic ,strong) NSArray<TFPrivilegeModel *> *privilege;
|
|
|
|
@property (nonatomic ,strong) TFMemberInfoModel *user;
|
|
|
|
@property (nonatomic ,strong) NSArray<TFGoodsModel *> *list;
|
|
|
|
@property (nonatomic ,strong) NSArray<NSString *> *about; // 提示
|
|
|
|
@property (nonatomic ,assign) BOOL thirdOn;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface TFPrivilegeModel : NSObject
|
|
|
|
@property (nonatomic ,copy) NSString *label;
|
|
|
|
@property (nonatomic ,copy) NSString *icon;
|
|
|
|
@property (nonatomic ,copy) NSString *url;
|
|
|
|
@property (nonatomic ,copy) NSString *desc;
|
|
|
|
@property (nonatomic ,copy) NSString *action;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|