28 lines
709 B
C
28 lines
709 B
C
|
|
//
|
|||
|
|
// QXRechargePermissionModel.h
|
|||
|
|
// QXLive
|
|||
|
|
//
|
|||
|
|
// Created by 启星 on 2025/10/12.
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <Foundation/Foundation.h>
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
@interface QXRechargePermissionModel : NSObject
|
|||
|
|
/// 首充权限:1开启 0关闭
|
|||
|
|
@property (nonatomic,strong)NSString* first_charge_permission;
|
|||
|
|
/// 天降好礼权限:1开启 0关闭
|
|||
|
|
@property (nonatomic,strong)NSString* day_drop_permission;
|
|||
|
|
/// 新人好礼权限:1开启 0关闭
|
|||
|
|
@property (nonatomic,strong)NSString* n_people_permission;
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
@interface QXRechargeTypeModel : NSObject
|
|||
|
|
/// 1 新人好礼 2天降好礼 3首充好礼
|
|||
|
|
@property (nonatomic,assign)NSInteger type;
|
|||
|
|
@property (nonatomic,strong)NSString* icon;
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|