This commit is contained in:
启星
2025-11-06 13:04:04 +08:00
parent 4aa2fac912
commit 406c481ba4
105 changed files with 1449 additions and 251 deletions

View File

@@ -0,0 +1,21 @@
//
// 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