22 lines
359 B
Objective-C
22 lines
359 B
Objective-C
//
|
|
// QXServiceModel.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/4.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXServiceModel : NSObject
|
|
/// 标题
|
|
@property (nonatomic,strong)NSString *title;
|
|
/// 类型
|
|
@property (nonatomic,assign)NSInteger type;
|
|
|
|
@property (nonatomic,strong)NSString* icon;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|