Files
featherVoice/QXLive/Mine(音域)/Model/QXServiceModel.h

24 lines
412 B
C
Raw Normal View History

2025-11-06 13:04:04 +08:00
//
// 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;
2025-12-17 11:44:25 +08:00
@property (nonatomic,strong)NSString* unreadNumber;
2025-11-06 13:04:04 +08:00
@end
NS_ASSUME_NONNULL_END