32 lines
627 B
Objective-C
32 lines
627 B
Objective-C
//
|
|
// QXRoomRelationModel.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/6/28.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
/**
|
|
"relation_id": "string",
|
|
"name": "string",
|
|
"type": "string",
|
|
"icon": "string"
|
|
|
|
*/
|
|
@interface QXRoomRelationModel : NSObject
|
|
/// 关系id
|
|
@property (nonatomic,strong)NSString *relation_id;
|
|
/// 关系名称
|
|
@property (nonatomic,strong)NSString *name;
|
|
/// 关系类型
|
|
@property (nonatomic,strong)NSString *type;
|
|
/// 关系icon
|
|
@property (nonatomic,strong)NSString *icon;
|
|
|
|
@property (nonatomic,assign)BOOL isSelected;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|