2023-07-06 16:54:13 +08:00
|
|
|
//
|
2023-07-14 18:50:55 +08:00
|
|
|
// GiftNobleInfoModel.h
|
2023-07-06 16:54:13 +08:00
|
|
|
// YUMI
|
|
|
|
//
|
|
|
|
// Created by YUMI on 2021/12/27.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2023-11-15 17:25:09 +08:00
|
|
|
@interface GiftNobleInfoModel : PIBaseModel
|
2023-07-06 16:54:13 +08:00
|
|
|
|
2024-04-11 15:47:44 +08:00
|
|
|
///VIP图标
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, copy)NSString *vipIcon;
|
2024-04-11 15:47:44 +08:00
|
|
|
///可用VIP等级
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, assign) NSInteger vipLevel;
|
2024-04-11 15:47:44 +08:00
|
|
|
///VIP名称
|
2023-07-06 16:54:13 +08:00
|
|
|
@property (nonatomic, copy) NSString *vipName;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|