Files
midi_ios/QXLive/HomePage(声播)/Model/QXRechargePermissionModel.h
2025-10-12 15:48:35 +08:00

28 lines
709 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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