30 lines
755 B
Objective-C
30 lines
755 B
Objective-C
//
|
|
// QXGroupSettingInfoModel.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2026/1/2.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXGroupSettingInfoModel : NSObject
|
|
/// 群聊id
|
|
@property (strong,nonatomic)NSString *guild_id;
|
|
/// 群聊id
|
|
@property (strong,nonatomic)NSString *name;
|
|
/// 群公告
|
|
@property (strong,nonatomic)NSString *notification;
|
|
/// 群聊头像
|
|
@property (strong,nonatomic)NSString *guild_cover;
|
|
/// 是否为群主 1 是群主 2不是群主
|
|
@property (strong,nonatomic)NSString *is_deacon;
|
|
/// 群成员列表
|
|
@property (strong,nonatomic)NSArray <QXUserModel*>*user_list;
|
|
/// 是否被全员禁言 1 禁言 0未禁言
|
|
@property (strong,nonatomic)NSString *mute_all_member;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|