You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
921 B
44 lines
921 B
// |
|
// 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
|
|
|