22 lines
505 B
Objective-C
22 lines
505 B
Objective-C
//
|
|
// QXRoomActivityStatusModel.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/12/21.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXRoomActivityStatusModel : NSObject
|
|
@property (nonatomic,strong)NSString *gift_bag_id;
|
|
@property (nonatomic,strong)NSString *name;
|
|
/// 活动状态 0 未开启 1 已开启
|
|
@property (nonatomic,strong)NSString *status;
|
|
@property (nonatomic,strong)NSString *status_str;
|
|
@property (nonatomic,strong)NSString *icon;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|