38 lines
740 B
Objective-C
38 lines
740 B
Objective-C
//
|
|
// QXSearchModel.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/6/21.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
/**
|
|
"id": "string",
|
|
"name": "string",
|
|
"picture": "string",
|
|
"code": "string",
|
|
"icon": [
|
|
"string"
|
|
]
|
|
*/
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXSearchModel : NSObject
|
|
//ID
|
|
@property (nonatomic,strong)NSString *id;
|
|
//名称
|
|
@property (nonatomic,strong)NSString *name;
|
|
//头像
|
|
@property (nonatomic,strong)NSString *picture;
|
|
// 显示code
|
|
@property (nonatomic,strong)NSString *code;
|
|
//
|
|
@property (nonatomic,strong)NSArray *icon;
|
|
|
|
@property (nonatomic,strong)NSString *label_icon;
|
|
|
|
@property (nonatomic,strong)NSString *hot_value;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|